Skip to main content

max / makenotwork

2.5 KB · 102 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/quasi-selection.js
14 server/static/quasi-clock.js
15 server/static/quasi-download.js
16 server/static/quasi-fill.js
17 server/static/geometry.css
18 server/static/layout.css
19 server/static/embed-geometry.css
20 server/static/typography.css
21 server/static/embed-typography.css
22
23 # The house faces, cut by quasi-type in build.rs. Same rule as the stylesheets
24 # above and the same rule shop and the Alloy image follow: the pipeline is the
25 # source, and a committed face is a second one that nothing rebuilds.
26 server/static/fonts/QuasiMono.woff2
27 server/static/fonts/QuasiBody.woff2
28 server/static/fonts/OFL-QuasiMono.txt
29 server/static/fonts/OFL-QuasiBody.txt
30
31 # Environment files (contain secrets)
32 server/.env
33 server/.env.local
34 server/.env.*.local
35 **/env.production
36
37 # IDE
38 .idea/
39 .vscode/
40 *.swp
41 *.swo
42 *~
43
44 # Secrets and credentials
45 *.pem
46 *.key
47 *.p8
48 *.p12
49 *.pfx
50 credentials.json
51 service-account.json
52
53 # OS files
54 .DS_Store
55 Thumbs.db
56
57 # SQLx offline mode cache
58 .sqlx/
59
60 # Generated template partials (build.rs output)
61 server/templates/_island.html
62 server/templates/_sheet.html
63
64 # Generated rustdoc output
65 server/rustdoc-out/
66
67 # Mutation testing output
68 mutants.out*
69 **/mutants.out*
70
71 # Claude Code agent worktrees
72 .claude/worktrees/
73
74 # Claude Code instructions (project-local; not for the public repo)
75 CLAUDE.md
76
77 # Private working files — live in _private/, synced via Syncthing
78 todo.md
79 # Glob, not the literal name: audit reports drifted to dated files
80 # (audit_doubledown_2026-07-01.md, etc.) that a literal `audit_review.md` rule
81 # left unignored — one `git add docs/` from leaking internal findings into the
82 # public repo (audit Run 17).
83 audit_review.md
84 audit_*.md
85 docs/audit_*.md
86 # Same intent for the risk-lens reports: /fuzz writes dated fuzz-*.md (and
87 # fuzz-doubledown-*.md) full of concrete attack paths and PoCs — never public.
88 fuzz-*.md
89 docs/fuzz-*.md
90
91 # sandod local state (regenerable)
92 sando/daemon/sando.db
93 sando/daemon/sando.db-*
94 sando/daemon/work/
95 sando/daemon/releases/
96 sando/daemon/cargo-target/
97
98 # mt-db and the server use sqlx compile-time macros; their offline query cache
99 # must be committed so build hosts (and the Sando gate) compile without a live DB.
100 !multithreaded/.sqlx/
101 !server/.sqlx/
102