# secrets
.env
.env.*
!.env.example
*.local

# python
__pycache__/
*.pyc
.venv/
.pytest_cache/
.ruff_cache/
*.egg-info/

# app state
*.sqlite
*.sqlite3
logs/
.tmp/

# coverage
.coverage
.coverage.*
coverage.xml
htmlcov/

# docker volumes / local data
data/
.docker/

# os/ide
.DS_Store
Thumbs.db
.idea/
.vscode/

# build artifacts (uv build)
dist/
