# Build context is the repo root (docker build -f services/<svc>/Dockerfile .).
# Everything here is either a host artifact, a secret, or dead weight in a layer.
.venv/
.git/
.github/
.gitea/
tests/
**/__pycache__
*.pyc
.mypy_cache/
.ruff_cache/
.pytest_cache/
.hypothesis/
.coverage
htmlcov/
dist/
build/
*.egg-info/

# secrets never enter a build context, let alone a layer
.env
*.env
!.env.example

# not needed at runtime
deploy/
docs/
scripts/
Makefile
RUNBOOK.md
README.md
