# Git
.git
.gitignore
.gitattributes

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

# Virtual environments
venv
.venv
env
ENV

# IDE
.vscode
.idea
*.swp
*.swo
*~
.DS_Store

# Testing
.pytest_cache
.coverage
htmlcov
.tox

# Development
.ruff_cache
.mypy_cache

# Generated files
generated_configs
logs
*.log

# Documentation
*.md
docs
!README.md

# Security scan artifacts
.security-scan

# Kubernetes configs (for development)
*.kubeconfig

# Other
TODO.md
ROADMAP.md
Makefile
