# Docker
Dockerfile
.dockerignore

# Python
__pycache__/
*.py[cod]
*$py.class
*.pyc
*.pyo
*.pyd
.Python
*.egg-info
dist/
build/
.pytest_cache/
.coverage
.tox
.mypy_cache
.venv/
venv/
env/
ENV/

# IDE / Editor files
.vscode/
.idea/
.cursor/
*.project
*.swp
*.swo
*~

# Test files
htmlcov/
.coverage
tests/
coverage.xml

# Build artifacts
*.egg-info/
*.egg

# Git
.git/
.gitignore

# GitHub Actions
.github/

# Documentation
docs/
README.md
*.md

# Cache directories
.ruff_cache/
*.cache

# OS specific
.DS_Store
Thumbs.db

# CI/CD
.gitlab-ci.yml
.travis.yml

# Logs
*.log
logs/

# Temporary files
*.tmp
*.temp

# Environment files
.env*

# Node.js (if any)
node_modules/
npm-debug.log*

# Other
*.bak
*.orig
docker-compose*.yml 