| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # 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/
|