.gitignore 640 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. # Sisyphus work directory
  33. .sisyphus/
  34. # Git worktrees
  35. .worktrees/
  36. worktrees/
  37. # Screenshots
  38. *.png
  39. !docs/**/*.png
  40. !cfc-frontend/static/*.png
  41. !cfc-web/public/logo.png
  42. !web/img/*.png
  43. !web/articles/*.png
  44. # Python
  45. *.py
  46. __pycache__/
  47. # OpenCode
  48. .opencode/
  49. dev-browser/
  50. .omo/
  51. # Python venv
  52. .venv/
  53. venv/
  54. # Codegraph
  55. .codegraph/