# Git files
.git
.gitignore
.gitattributes

# Documentation
*.md
docs/
README.md

# Python cache and bytecode
__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

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

# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Testing
.pytest_cache/
.coverage
.tox/
htmlcov/
.cache

# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
azure-pipelines.yml

# Docker files (except what's needed)
Dockerfile*
docker-compose*
.dockerignore

# Logs
*.log
logs/

# Temporary files
*.tmp
*.temp
.tmp/

# OS files
Thumbs.db
ehthumbs.db

# Security sensitive files
*.pem
*.key
*.p12
*.pfx
.env.local
.env.production
secrets/