# Git
.git/
.gitignore

# Python cache & virtual environments
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
.pytest_cache/
.mypy_cache/
.venv/
venv/
env/

# Secrets — NEVER ship these in an image layer
.env
.env.*
!.env.example
*.key
*.pem

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

# Build artifacts & local data
dist/
build/
*.db
*.sqlite3

# Tests and docs (optional for production image)
tests/
docs/
