.git
.gitignore
.env
.venv
.python-version
Dockerfile
docker-compose.yml

# Runtime data (model weights, adapters, SQLite DB) - not needed at build time
data/

# Tests - not installed in the image
tests/

# Reference material and examples - not needed in the image
examples/
_references/
_untracked/

# Python build artefacts
__pycache__
*.py[cod]
*.pyo
*.egg-info
dist/
build/

# Tooling caches
.pytest_cache
.mypy_cache
.ruff_cache
uv.lock

# Docs and non-essential files
*.md
!README.md

# OS
.DS_Store
Thumbs.db
