.gitignore 644 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # IDE
  2. .idea/
  3. .vscode/
  4. *.iml
  5. *.ipr
  6. *.iws
  7. # Build outputs
  8. **/target/
  9. **/dist/
  10. **/unpackage/
  11. **/node_modules/
  12. # Logs
  13. *.log
  14. logs/
  15. # OS files
  16. .DS_Store
  17. Thumbs.db
  18. # Local config
  19. *.local
  20. .env.local
  21. .env.*.local
  22. .env.production
  23. # Test artifacts
  24. .playwright-mcp/
  25. coverage/
  26. # Temporary files
  27. *.tmp
  28. *.temp
  29. *.swp
  30. *.swo
  31. *~
  32. ~$*
  33. # Sisyphus work directory
  34. .sisyphus/
  35. # Git worktrees
  36. .worktrees/
  37. worktrees/
  38. # Screenshots
  39. *.png
  40. !docs/**/*.png
  41. !cfc-frontend/static/*.png
  42. !cfc-web/public/logo.png
  43. !web/img/*.png
  44. !web/articles/*.png
  45. # Python
  46. *.py
  47. __pycache__/
  48. # OpenCode
  49. .opencode/
  50. dev-browser/
  51. .omo/
  52. # Python venv
  53. .venv/
  54. venv/
  55. # Codegraph
  56. .codegraph/