# Ausgeschlossene Pfade und Dateien fuer Docker-Build-Kontext.
# Identisch zu .gitignore, plus build-spezifische Ausnahmen.

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
.venv/
env/
.pytest_cache/
.mypy_cache/
.ruff_cache/

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

# App data (lokal generiert, NICHT in den Container)
data/*.db
data/*.db-journal
data/*.db-wal
data/*.db-shm
data/backups/
data/exports/

# Logs
*.log
logs/

# Secrets / Env
.env
.env.local
*.pem

# Docker-Artefakte
Dockerfile
.dockerignore
docker-compose.yml
.docker/
