# Keep the build context small and free of non-runtime / sensitive material.
.git
.gitignore
**/__pycache__/
*.pyc
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/

# Not needed at runtime
tests/
legacy/
PROVISION_PLAN.md

# Real radio data / third-party material (also gitignored)
sample-export/
samples/
reference_*.decompiled.cs
*.unipps
*.db

# Local data mount and envs
data/
.venv/
venv/

# Container build files themselves
Dockerfile
docker-compose.yml
.dockerignore
