# Virtual environment
.venv/

# Environment variables (contains secrets)
.env

# Python cache
__pycache__/
*.pyc
*.pyo

# pytest cache
.pytest_cache/

# Coverage
.coverage
htmlcov/

# SQLite database (for local dev)
*.db

# UV lock (optional, can be committed)
# uv.lock

# IDE
.idea/
.vscode/
