-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
69 lines (61 loc) · 1.35 KB
/
Copy path.gitignore
File metadata and controls
69 lines (61 loc) · 1.35 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
60
61
62
63
64
65
66
67
68
69
# Python
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
.venv/
venv/
env/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# Environment / secrets
.env
.env.*
!.env.example
# Node / frontend
node_modules/
dist/
build/
.next/
*.log
# ML / data artifacts
*.pt
*.onnx
*.weights
# Ignore everything under data/ EXCEPT the committed replay artifacts that the default
# `docker compose up` (the replayer service) depends on: the pre-generated behavioural events and
# the VLM verdict cache. These are de-identified (visitor tokens, zones, timestamps, is_staff — no
# faces/PII) and committing them is what makes the one-command demo work on a fresh clone with zero
# manual steps (ADR-0033). Intermediate/per-store dumps (e.g. store2.jsonl) stay ignored.
data/*
!data/events/
data/events/*
!data/events/behavior.jsonl
!data/vlm/
data/vlm/*
!data/vlm/*.json
datasets/
*.mp4
*.avi
*.mov
models/
# Raw source data — user-owned, NEVER committed.
# Contains customer PII (names/phone numbers in the CSV) and large CCTV videos + real faces.
docs/raw/
# Extracted CCTV frames — contain real customers' faces. Keep local only.
docs/wiki/frames/
# Interview prep — personal defend-your-decisions notes, keep local only.
docs/wiki/INTERVIEW_QA.md
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/*
!.vscode/extensions.json
# Docker / infra local state
*.pid
volumes/
.scratch