e9e0b68746
The operator-supplied Edifabric API key file was untracked (and showed up in 'git status' as an untracked file). Add both the basename and the full path to .gitignore so the secret key never gets accidentally committed.
66 lines
1.5 KiB
Plaintext
66 lines
1.5 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
.venv/
|
|
venv/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# macOS extraction residue (AppleDouble / __MACOSX from unzip on macOS).
|
|
# These are paired with every regular file in an extracted zip — never data.
|
|
__MACOSX/
|
|
._*
|
|
|
|
# Operator drop zone (untracked working dir; contents are HCPF-delivered
|
|
# inbound files, never source). Use `mkdir -p ingest && touch ingest/.gitkeep`
|
|
# if you want the directory itself in the repo.
|
|
ingest/
|
|
|
|
# Local config
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
# Edifabric / EdiNation operator-supplied dev key (env file).
|
|
# Lives at backend/.env.cyclone-edifabric; source it in the shell.
|
|
.env.cyclone-edifabric
|
|
backend/.env.cyclone-edifabric
|
|
|
|
# Production data (handled by ops, not committed)
|
|
docs/prodfiles/*/
|
|
*.production.txt
|
|
|
|
# Local parser output
|
|
claims_output/
|
|
|
|
# Worktrees (subagent-driven development)
|
|
.worktrees/
|
|
|
|
# Brainstorm session artifacts (visual companion mockups, events, server state).
|
|
# Skills under .superpowers/skills/ are committed project-scoped guidance.
|
|
.superpowers/brainstorm/
|
|
|
|
# SP33+ scratch / production-data ingest. Generated artifacts live
|
|
# here only — the source EDI sits under docs/prodfiles/.
|
|
ingest/
|
|
|
|
# SP41 dev/ scratch dir — generated 837P artifacts from rebill pipeline
|
|
# runs. Hundreds of thousands of files; never source. The scripts that
|
|
# build them are tracked (dev/unbilled-july2026/scripts/...) but the
|
|
# generated x12 artifacts are not.
|
|
dev/rebills/
|
|
dev/rebills/2026-*
|