# Python virtual environment
bin/
lib/
pyvenv.cfg
.venv/
__pycache__/
*.pyc
*.pyo
*.pyd

# Build / distribution
dist/
build/
*.egg-info/
.eggs/

# Sensitive data directories - NEVER commit these
encrypt/
decrypt/
encrypted/
decrypted/

# Encryption metadata output - migrate to DynamoDB, then remove from git history
code/output.json

# Environment and credentials
.env
.env.local
.aws/
*.pem
*.key

# OS files
.DS_Store
Thumbs.db

# Logs
logs/
*.log

# Temporary files
*.tmp
*.bak
.trash/

# Test / coverage
.coverage
htmlcov/
.pytest_cache/

# Mypy / ruff caches
.mypy_cache/
.ruff_cache/

# Security reports
docs/security/SECURITY-REPORT-*.md

# CDK
cdk.out/

