# 🧲 MAGION .dockerignore

# Version control
.git
.gitignore
.gitattributes
.gitlab
.github
.gitlab-ci.yml

# Python
__pycache__
*.pyc
*.pyo
*.pyd
.pytest_cache
.coverage
.coverage.*
htmlcov
.mypy_cache
.venv
venv
env
ENV
env.bak
venv.bak

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

# Documentation
docs/build
docs/site
site

# Build artifacts
dist
build
*.egg-info
*.egg

# Data (exclude large datasets)
data/large
data/raw/large
tests/data/large

# Logs
*.log
/var/log/magion

# Secrets
.env
.env.*
*.key
*.pem
*.crt
secrets.*

# Docker
.dockerignore
Dockerfile
docker-compose*.yml

# Local config
config/local.yaml
config/*.local.yaml

# Notebooks
.ipynb_checkpoints
*.ipynb

# OS
.DS_Store
Thumbs.db
