| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- # IDE
- .idea/
- .vscode/
- *.iml
- *.ipr
- *.iws
- # Build outputs
- **/target/
- **/dist/
- **/unpackage/
- **/node_modules/
- # Logs
- *.log
- logs/
- # OS files
- .DS_Store
- Thumbs.db
- # Local config
- *.local
- .env.local
- .env.*.local
- .env.production
- # Test artifacts
- .playwright-mcp/
- coverage/
- # Temporary files
- *.tmp
- *.temp
- *.swp
- *.swo
- *~
- ~$*
- # Sisyphus work directory
- .sisyphus/
- # Git worktrees
- .worktrees/
- worktrees/
- # Screenshots
- *.png
- !docs/**/*.png
- !cfc-frontend/static/*.png
- !cfc-web/public/logo.png
- !web/img/*.png
- !web/articles/*.png
- # Python
- *.py
- __pycache__/
- # OpenCode
- .opencode/
- dev-browser/
- .omo/
- # Python venv
- .venv/
- venv/
- # Codegraph
- .codegraph/
|