| 123456789101112131415161718192021222324 |
- .venv/
- __pycache__/
- *.py[cod]
- *.pyo
- *.pyd
- .pytest_cache/
- .mypy_cache/
- .ruff_cache/
- .coverage
- .coverage.*
- htmlcov/
- *.egg-info/
- dist/
- build/
- # Keep .env.example tracked; ignore only real environment files.
- .env
- .env.local
- .env.*
- !.env.example
- .idea/
- .vscode/
- .DS_Store
- Thumbs.db
- logs/
|