docs(deployment): pin exact normalizer entrypoint command
Some checks failed
CI / Unit & Component Tests (pull_request) Successful in 3m32s
CI / OCR Service Tests (pull_request) Successful in 25s
CI / Backend Unit Tests (pull_request) Failing after 3m35s
CI / fail2ban Regex (pull_request) Successful in 44s
CI / Semgrep Security Scan (pull_request) Successful in 19s
CI / Compose Bucket Idempotency (pull_request) Successful in 1m2s

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 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-05-27 11:04:39 +02:00
parent 4fa2b83c0d
commit fc53e777d5

View File

@@ -572,7 +572,8 @@ maps the clean columns by header name. See [ADR-025](adr/025-canonical-import-an
```bash ```bash
cd tools/import-normalizer 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/ # writes the four canonical artifacts into ./out/
``` ```