| 123456789101112131415161718192021 |
- # Repository-level ignores
- .DS_Store
- Thumbs.db
- # Local editor state
- .idea/
- .vscode/
- # Backend runtime data
- backend/data/*.db
- backend/data/uploads/
- backend/uvicorn.out.log
- backend/uvicorn.err.log
- # Python caches outside package-local .gitignore
- **/__pycache__/
- **/.pytest_cache/
- # Flutter build artifacts outside frontend/.gitignore
- frontend/build/
- frontend/.dart_tool/
|