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

# Environments
.venv/
venv/
env/

# Secrets and local state. .env holds the admin key; localgate.config.json holds the
# established database URL, credentials included.
.env
!.env.example
localgate.config.json

# Private planning notes — kept locally, never published.
ROADMAP.md

# Local codegen / patch scratch scripts
apply_*.sh
reapply_*.sh

# Databases
*.db
*.sqlite
*.sqlite3

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

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