# Git
.git
.gitignore
.gitattributes

# Documentation
README.md
*.md
docs/

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

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Rust build artifacts (will be rebuilt in container)
/target/
**/*.rs.bk
*.pdb

# Python cache and build artifacts
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Python virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Test and coverage files
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Logs
*.log

# Temporary files
*.tmp
*.temp

# Docker files (to avoid recursive copying)
Dockerfile*
docker-compose*
.dockerignore

# CI/CD files
.github/
.gitlab-ci.yml
.travis.yml
.circleci/

# Environment files
.env*
!.env.example

# Local configuration
local_settings.py
settings_local.py

# Database files
*.db
*.sqlite
*.sqlite3

# Backup files
*.bak
*.backup 