# Environment files (contain secrets!)
.env
*.env.local

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

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

# OS
.DS_Store
Thumbs.db
*.bak

# Docker
docker-compose.override.yml

# Logs
*.log
logs/

# SSL certificates (if stored locally)
nginx/ssl/
*.pem
*.crt
*.key

# Data and cache
data/
*.cache
.cache/

# Coverage
.coverage
htmlcov/
coverage.xml
*.cover

# MyPy
.mypy_cache/
.dmypy.json

# Pytest
.pytest_cache/

# Ruff
.ruff_cache/