# Git
.git
.gitignore
.gitattributes

# Documentation
README.md
LICENCE.md
*.md
docs/

# Environment files (never include in images)
.env
.envs/
*.env
.env.*

# Python
__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
MANIFEST
pip-log.txt
pip-delete-this-directory.txt
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
htmlcov/
*.pdb

# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.next/
out/
.cache/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Docker
docker-compose*.yml
Dockerfile*
.dockerignore

# Database
*.sqlite3
*.db

# Media and Static (handled by volumes)
staticfiles/
mediafiles/
media/

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

# Logs
*.log
logs/

# Temporary files
tmp/
temp/
*.tmp

# OpenSpec (not needed in containers)
openspec/

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

# Backup files
*.bak
*.backup
backup_*.sql
