-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
34 lines (26 loc) · 872 Bytes
/
Copy path.gitignore
File metadata and controls
34 lines (26 loc) · 872 Bytes
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
# Runtime state - NEVER commit.
# data/sessions/*.json contain every prompt and model response verbatim,
# and config.json holds your inference endpoint addresses.
# store.ts recreates this directory on startup, so nothing is lost by ignoring it.
data/
# Atomic-write temp files (store.ts writes *.tmp then renames)
*.tmp
# Per-box compose settings written by tools/install.sh - holds ADMIN_PASSWORD
docker-compose.override.yml
# Derived transfer artifact (tools/make-bundle.sh); never history, only output
dist/
# Local hardware notes - contains this box's real addresses and measurements
CONTEXT-SIZING.md
# Local release planning; spent once the repo is public
PUBLISH-CHECKLIST.md
# Node (this project has zero dependencies; defensive only)
node_modules/
package-lock.json
# Editor / OS noise
.vscode/
.idea/
*.swp
Thumbs.db
.DS_Store
# Agent scratch
.claude/