# QIG-Consciousness Docker Ignore
# Exclude these from Docker build context for faster builds

# 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

# Virtual environments
.venv/
venv/
ENV/
env/

# Data and outputs (too large for build context)
data/
results/
outputs/
*.jsonl
*.json.gz
*.csv
*.parquet

# Model checkpoints
*.pt
*.pth
*.ckpt
*.safetensors

# Logs
*.log
logs/

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

# Git
.git/
.gitignore

# OS
.DS_Store
Thumbs.db

# Documentation build artifacts
docs/_build/
docs/_static/
docs/_templates/

# Test coverage
.coverage
htmlcov/
.pytest_cache/

# Jupyter
.ipynb_checkpoints/

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

# CI/CD
.github/

# README (included separately)
README.md
README_SANDBOX.md
