forked from ChelseaKR/fare-policy-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
59 lines (56 loc) · 2.05 KB
/
Copy path.gitignore
File metadata and controls
59 lines (56 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
__pycache__/
*.pyc
.DS_Store
.venv/
.mypy_cache/
.ruff_cache/
.pytest_cache/
*.egg-info/
.env
# Coverage artifacts
.coverage
.coverage.*
coverage.xml
htmlcov/
# Mutation testing (advisory; make mutation). mutmut copies sources into
# mutants/ and caches results in .mutmut-cache; both are regenerated per run.
mutants/
.mutmut-cache
html/
# Built retrieval index (regenerate with `make index`)
corpus/index/
# Cooperative archive locks persist so separate processes always flock the same
# inode; interrupted hidden stages are never published and are safe to clean.
corpus/versions/.archive.lock
corpus/versions/.*.*/
corpus/snapshots/.archive.lock
corpus/snapshots/.*.*/
# Per-run eval artifacts (committed reports live in docs/)
evals/runs/
# Content-keyed answer/judge cache (evals/cache.py, FIX-12); local speed/cost
# optimization, not an artifact.
evals/cache/
# Lambda bundle staging (infra/deploy.sh)
infra/build/
# Generated offline fare reference (served at runtime from the corpus; make offline)
web/offline.html
# Git-backed corpus changelog for the operator console (make history; EXP-09).
# Regenerated at deploy time by infra/deploy-console.sh, same reasoning as
# evals/runs/ above: a point-in-time export of git history, not a document.
corpus/version_history.json
# Also created by infra/deploy-console.sh's bundle step
infra/build-console/
# Generated guided fare finder (served at runtime from the corpus; make guide)
web/guide.html
# Original spec document; CLAUDE.md is the canonical committed copy
CLAUDE-fare-assistant.md
# runtime-fetched portfolio-standards (never commit)
.standards/
# Transient: written by `ingest fetch` when a source is unreachable, read by
# the corpus-freshness workflow, never committed. deploy.sh refuses a dirty
# tree, so this must not linger after a local refresh.
corpus/raw/fetch-failures.json
# The independent audit's harness, resolved at run time from plumbline.pin and
# verified to be at the pinned commit. Never a dependency of this project and
# never committed: the pin is the record, the checkout is a cache.
.plumbline-cache/