# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/

# IDE
.idea/
.vscode/
*.swp
*.swo
*~

# OS
.DS_Store
Thumbs.db

# Data files - schema is in repo, data is not
# Data is instance-specific and will move to cloud service
*.sqlite
*.sqlite.bak
*.db

# Infrastructure secrets - NEVER commit these!
infra/.env.pod
infra/.env.*
!infra/.env.example

# General environment files
.env
.env.local
.env.*.local

# Credentials and keys
*.pem
*.key
credentials.json
.claude/

# Database dumps
*.dump

# Test artifacts
.coverage
coverage.xml
coverage-*.xml
htmlcov/
.pytest_cache/
coverage/
coverage.json
.mypy_cache/
