From fc53e777d5a96621e0dd493bda965c240ba44086 Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 27 May 2026 11:04:39 +0200 Subject: [PATCH] docs(deployment): pin exact normalizer entrypoint command Replace the "or the documented normalizer entrypoint" hedge with the real command (.venv/bin/python normalize.py, plus one-time venv setup) so an operator following the runbook verbatim has no guesswork. Refs #669 Co-Authored-By: Claude Opus 4.7 --- docs/DEPLOYMENT.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/DEPLOYMENT.md b/docs/DEPLOYMENT.md index 3102d135..dee25e49 100644 --- a/docs/DEPLOYMENT.md +++ b/docs/DEPLOYMENT.md @@ -572,7 +572,8 @@ maps the clean columns by header name. See [ADR-025](adr/025-canonical-import-an ```bash cd tools/import-normalizer -python -m normalizer # or the documented normalizer entrypoint +python3 -m venv .venv && .venv/bin/pip install -r requirements.txt # once, on a fresh clone +.venv/bin/python normalize.py # writes the four canonical artifacts into ./out/ ```