# Keep the build context small and fast.
.git
.venv
venv

# Python caches / build artifacts
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
dist/
build/

# Tooling caches
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
htmlcov/

# Local state and secrets (never baked into the image)
.env
data/*.db
data/*.db-*

# Tests are not needed at runtime
tests/

# IDE / OS
.idea/
.vscode/
*.swp
.DS_Store
Thumbs.db
