# Version control
.git
.gitignore
.github/

# Python artifacts
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/

# Virtual environments
venv/
.venv/
env/

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

# IDE
.vscode/
.idea/
*.swp
*.swo

# Environment files
.env
.env.*

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

# Documentation (keep README for pip install)
docs/
CHANGELOG*
CONTRIBUTING*

# Notebooks
notebooks/
*.ipynb

# Logs and temp
logs/
*.log
.DS_Store

# Node.js (rebuilt in Docker node-builder stage)
src/*/ui/node_modules/
src/*/ui/.next/
