The RareWaves/Inertia scrapes (rarw*.txt, inertia.txt, the SOH .xlsx) were tracked in git AND baked into the Docker image (COPY . . with no exclusion). They carry a live RareWaves buyer JWT and a supplier contact email — they don't belong in either. - git rm --cached the 7 dumps; moved to local-only ingest_raw/ - .gitignore + .dockerignore: ingest_raw/, rarw*.txt, inertia.txt, *.xlsx - nothing reads them by path (the xlsx ingest takes a base64 upload), so no code change NOTE: still present in history (ef37063,926468a) — scrub separately if the JWT is live. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
__pycache__/
|
|
*.pyc
|
|
.env
|
|
.venv/
|
|
venv/
|
|
# distro raw dumps — saved scrapes/spreadsheets for manual ingest. Never commit:
|
|
# they carry supplier PII + live account tokens (e.g. a RareWaves buyer JWT). Local-only.
|
|
ingest_raw/
|
|
rarw*.txt
|
|
inertia.txt
|
|
*.xlsx
|