# Secrets and environment files
.env
.env.*
!.env.example
!.env.docker.example

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
.eggs/
/build/
/dist/
*.egg

# Virtual environments
.venv/
/venv/
/env/
/ENV/

# Test and coverage
.pytest_cache/
.coverage
.coverage.*
/htmlcov/
coverage.xml
.mypy_cache/

# Redis dump
*.rdb
dump.rdb

# Frontend build output (regenerated on deploy)
frontend/dist/
frontend/node_modules/

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

# OS
.DS_Store
Thumbs.db

# Logs
*.log
/logs/
.ruff_cache/

# Database files
*.db
*.db-journal
*.db-wal
*.db-shm
/data/

# Alembic (autogenerated migrations excluded, but keep 0001)
alembic/versions/__pycache__/

# Docker
.docker-data/
