# DBMigrate .gitignore

# =============================================================================
# SECRETS - NEVER COMMIT
# =============================================================================
.env
.env.local
.env.production
*.pem
*.key
secrets/
credentials/

# =============================================================================
# Python
# =============================================================================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

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

# =============================================================================
# Testing
# =============================================================================
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
.hypothesis/

# =============================================================================
# IDE
# =============================================================================
.idea/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/

# =============================================================================
# Build
# =============================================================================
*.manifest
*.spec
pip-log.txt
pip-delete-this-directory.txt

# =============================================================================
# Database files (local development)
# =============================================================================
*.db
*.sqlite
*.sqlite3
dbmigrate_*.db

# =============================================================================
# Logs
# =============================================================================
*.log
logs/
dbmigrate_audit.log

# =============================================================================
# Cache
# =============================================================================
.cache/
.ruff_cache/
.mypy_cache/
.dmypy.json
dmypy.json

# =============================================================================
# Local data
# =============================================================================
backups/
data/
output/
migrations_output/
tests/output/

# =============================================================================
# Docker
# =============================================================================
docker/ssl/

# =============================================================================
# OS
# =============================================================================
.DS_Store
Thumbs.db
Desktop.ini

# =============================================================================
# Misc
# =============================================================================
*.bak
*.tmp
*.temp
