| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # Python
- __pycache__/
- *.py[cod]
- *.pyo
- *.pyd
- .Python
- *.egg-info/
- dist/
- build/
- .eggs/
- # Virtual environments
- .venv/
- venv/
- env/
- ENV/
- # Environment variables (keep .env files, ignore local overrides)
- .env.local
- .env.*.local
- frontend/.env.local
- frontend/.env.*.local
- # pytest / hypothesis
- .pytest_cache/
- .hypothesis/
- # Database / GeoIP (large binary, should not be committed)
- backend/GeoLite2-City.mmdb
- # Node
- frontend/node_modules/
- frontend/dist/
- frontend/dist-ssr/
- frontend/*.local
- # Logs
- *.log
- logs/
- # OS
- .DS_Store
- Thumbs.db
- # Editor
- .vscode/*
- !.vscode/extensions.json
- .idea/
- .kiro/
- # Misc
- *.suo
- *.ntvs*
- *.njsproj
- *.sln
- *.sw?
|