42 lines
404 B
Text
42 lines
404 B
Text
# Local environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.python-version
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
.eggs/
|
|
*.egg-info/
|
|
pip-wheel-metadata/
|
|
|
|
# Tooling caches
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# IDEs and OS files
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project runtime files
|
|
downloads/
|
|
*.log
|