| 1 |
# Build artifacts |
| 2 |
/target |
| 3 |
**/target |
| 4 |
|
| 5 |
# Environment files (contain secrets) |
| 6 |
server/.env |
| 7 |
server/.env.local |
| 8 |
server/.env.*.local |
| 9 |
**/env.production |
| 10 |
|
| 11 |
# IDE |
| 12 |
.idea/ |
| 13 |
.vscode/ |
| 14 |
*.swp |
| 15 |
*.swo |
| 16 |
*~ |
| 17 |
|
| 18 |
# Secrets and credentials |
| 19 |
*.pem |
| 20 |
*.key |
| 21 |
*.p8 |
| 22 |
*.p12 |
| 23 |
*.pfx |
| 24 |
credentials.json |
| 25 |
service-account.json |
| 26 |
|
| 27 |
# OS files |
| 28 |
.DS_Store |
| 29 |
Thumbs.db |
| 30 |
|
| 31 |
# SQLx offline mode cache |
| 32 |
.sqlx/ |
| 33 |
|
| 34 |
# Generated template partial (build.rs output) |
| 35 |
server/templates/_head_assets.html |
| 36 |
|
| 37 |
# Generated rustdoc output |
| 38 |
server/rustdoc-out/ |
| 39 |
|
| 40 |
# Mutation testing output |
| 41 |
mutants.out* |
| 42 |
**/mutants.out* |
| 43 |
|
| 44 |
# Claude Code agent worktrees |
| 45 |
.claude/worktrees/ |
| 46 |
|
| 47 |
# Claude Code instructions (project-local; not for the public repo) |
| 48 |
CLAUDE.md |
| 49 |
|
| 50 |
# Private working files — live in _private/, synced via Syncthing |
| 51 |
todo.md |
| 52 |
audit_review.md |
| 53 |
|