Skip to main content

max / makenotwork

2.0 KB · 89 lines History Blame Raw
1 # Build artifacts
2 /target
3 **/target
4
5 # Frontend (regenerable — tsc output + installed deps; rebuilt by build.rs)
6 server/static/dist/
7 server/frontend/node_modules/
8 multithreaded/static/dist/
9 multithreaded/frontend/node_modules/
10
11 # Generated stylesheets (makeover-build emits these from makeover-geometry and
12 # makeover-webview; the crates are the source, a checked-in copy would drift)
13 server/static/geometry.css
14 server/static/layout.css
15 server/static/embed-geometry.css
16
17 # Environment files (contain secrets)
18 server/.env
19 server/.env.local
20 server/.env.*.local
21 **/env.production
22
23 # IDE
24 .idea/
25 .vscode/
26 *.swp
27 *.swo
28 *~
29
30 # Secrets and credentials
31 *.pem
32 *.key
33 *.p8
34 *.p12
35 *.pfx
36 credentials.json
37 service-account.json
38
39 # OS files
40 .DS_Store
41 Thumbs.db
42
43 # SQLx offline mode cache
44 .sqlx/
45
46 # Generated template partials (build.rs output)
47 server/templates/_head_assets.html
48 server/templates/_island.html
49 server/templates/_sheet.html
50
51 # Generated rustdoc output
52 server/rustdoc-out/
53
54 # Mutation testing output
55 mutants.out*
56 **/mutants.out*
57
58 # Claude Code agent worktrees
59 .claude/worktrees/
60
61 # Claude Code instructions (project-local; not for the public repo)
62 CLAUDE.md
63
64 # Private working files — live in _private/, synced via Syncthing
65 todo.md
66 # Glob, not the literal name: audit reports drifted to dated files
67 # (audit_doubledown_2026-07-01.md, etc.) that a literal `audit_review.md` rule
68 # left unignored — one `git add docs/` from leaking internal findings into the
69 # public repo (audit Run 17).
70 audit_review.md
71 audit_*.md
72 docs/audit_*.md
73 # Same intent for the risk-lens reports: /fuzz writes dated fuzz-*.md (and
74 # fuzz-doubledown-*.md) full of concrete attack paths and PoCs — never public.
75 fuzz-*.md
76 docs/fuzz-*.md
77
78 # sandod local state (regenerable)
79 sando/daemon/sando.db
80 sando/daemon/sando.db-*
81 sando/daemon/work/
82 sando/daemon/releases/
83 sando/daemon/cargo-target/
84
85 # mt-db and the server use sqlx compile-time macros; their offline query cache
86 # must be committed so build hosts (and the Sando gate) compile without a live DB.
87 !multithreaded/.sqlx/
88 !server/.sqlx/
89