45 lines
547 B
Plaintext
45 lines
547 B
Plaintext
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.venv*/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Packaging and build output
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
pip-wheel-metadata/
|
|
|
|
# Local environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Runtime state mounted by Docker Compose
|
|
data/*
|
|
!data/.gitkeep
|
|
logs/*
|
|
!logs/.gitkeep
|
|
|
|
# Editor, OS, and tool metadata
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Docker/local deploy scratch files
|
|
docker-compose.override.yml
|