| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # 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/
- # 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?
|