| 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 |
# Environment files (contain secrets) |
| 12 |
server/.env |
| 13 |
server/.env.local |
| 14 |
server/.env.*.local |
| 15 |
**/env.production |
| 16 |
|
| 17 |
# IDE |
| 18 |
.idea/ |
| 19 |
.vscode/ |
| 20 |
*.swp |
| 21 |
*.swo |
| 22 |
*~ |
| 23 |
|
| 24 |
# Secrets and credentials |
| 25 |
*.pem |
| 26 |
*.key |
| 27 |
*.p8 |
| 28 |
*.p12 |
| 29 |
*.pfx |
| 30 |
credentials.json |
| 31 |
service-account.json |
| 32 |
|
| 33 |
# OS files |
| 34 |
.DS_Store |
| 35 |
Thumbs.db |
| 36 |
|
| 37 |
# SQLx offline mode cache |
| 38 |
.sqlx/ |
| 39 |
|
| 40 |
# Generated template partials (build.rs output) |
| 41 |
server/templates/_head_assets.html |
| 42 |
server/templates/_island.html |
| 43 |
|
| 44 |
# Generated rustdoc output |
| 45 |
server/rustdoc-out/ |
| 46 |
|
| 47 |
# Mutation testing output |
| 48 |
mutants.out* |
| 49 |
**/mutants.out* |
| 50 |
|
| 51 |
# Claude Code agent worktrees |
| 52 |
.claude/worktrees/ |
| 53 |
|
| 54 |
# Claude Code instructions (project-local; not for the public repo) |
| 55 |
CLAUDE.md |
| 56 |
|
| 57 |
# Private working files — live in _private/, synced via Syncthing |
| 58 |
todo.md |
| 59 |
# Glob, not the literal name: audit reports drifted to dated files |
| 60 |
# (audit_doubledown_2026-07-01.md, etc.) that a literal `audit_review.md` rule |
| 61 |
# left unignored — one `git add docs/` from leaking internal findings into the |
| 62 |
# public repo (audit Run 17). |
| 63 |
audit_review.md |
| 64 |
audit_*.md |
| 65 |
docs/audit_*.md |
| 66 |
# Same intent for the risk-lens reports: /fuzz writes dated fuzz-*.md (and |
| 67 |
# fuzz-doubledown-*.md) full of concrete attack paths and PoCs — never public. |
| 68 |
fuzz-*.md |
| 69 |
docs/fuzz-*.md |
| 70 |
|
| 71 |
# sandod local state (regenerable) |
| 72 |
sando/daemon/sando.db |
| 73 |
sando/daemon/sando.db-* |
| 74 |
sando/daemon/work/ |
| 75 |
sando/daemon/releases/ |
| 76 |
sando/daemon/cargo-target/ |
| 77 |
|
| 78 |
# mt-db and the server use sqlx compile-time macros; their offline query cache |
| 79 |
# must be committed so build hosts (and the Sando gate) compile without a live DB. |
| 80 |
!multithreaded/.sqlx/ |
| 81 |
!server/.sqlx/ |
| 82 |
|