| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- .Python
- venv/
- ENV/
- .venv/
- *.egg-info/
- dist/
- build/
- .pytest_cache/
- .coverage
- htmlcov/
- # Backend
- backend/venv/
- backend/*.db
- backend/.env
- backend/instance/
- # Node.js
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # Frontend build
- frontend/dist/
- frontend/node_modules/
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- *~
- # OS
- .DS_Store
- Thumbs.db
- # Logs
- *.log
- logs/
- # Environment
- .env
- .env.local
- .env.*.local
- # Temporary files
- tmp/
- temp/
- *.tmp
|