-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (49 loc) · 1.34 KB
/
Copy path.gitignore
File metadata and controls
56 lines (49 loc) · 1.34 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
# Personal Claude Code workspace — per-developer scratchpad and memory.
# Each teammate may have their own .claude/ directory; none are shared.
.claude/
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
backend/venv/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Node / frontend
node_modules/
dist/
build/
.next/
# Environment / secrets
.env
.env*
.env.local
.env.*.local
# Editor / OS
.vscode/
.idea/
.DS_Store
Thumbs.db
# Pipeline artifacts
clips/videos/
backend/eval/reports/
*.cache
# SQLite runtime cache — clip_fact_checks.db is a per-process artifact
# that mutates every time the backend runs; the WAL/SHM sidecars churn
# even faster. Tracking them produces noisy diffs and merge conflicts.
backend/data/*.db
backend/data/*.db-shm
backend/data/*.db-wal
# Level 2b routing — combined_train.csv is committed (the data is
# the durable artifact). model.pkl is NOT committed because git over
# HTTPS chokes on the 32 MB pickle. Every contributor trains locally
# once after clone:
# python -m backend.app.level2b_routing.classifier.train \
# backend/app/level2b_routing/data/combined_train.csv \
# --out backend/app/level2b_routing/classifier/model.pkl
# Pinned scikit-learn==1.8.0 + joblib==1.5.3 in requirements.txt so
# every local retrain produces a load-compatible artifact.
backend/app/level2b_routing/data/synthetic_train.csv
*.pkl