Skip to main content

max / goingson

1.2 KB · 48 lines History Blame Raw
1 # Build
2 /target/
3
4 # Environment
5 .env
6 .env.*
7
8 # macOS
9 .DS_Store
10
11 # IDE / tooling
12 .vscode/
13 .idea/
14 .claude/
15 .mcp.json
16
17 # Release artifacts (dmg/app/ios output) stay out of git. The release scripts and
18 # Bento recipes are tracked: they carry no credentials -- the App Store Connect
19 # issuer/key id moved to ~/.tauri/passwords.env in 2026-07, so a build host gets
20 # the scripts by checkout instead of a hand-scp. Keep it that way; never inline a
21 # key id, issuer, or password here.
22 dist/*
23 !dist/recipes/
24 !dist/*.sh
25
26 # Archive
27 _archive/
28
29 # Tauri iOS generated asset symlinks (encode ../ as _up_)
30 src-tauri/gen/apple/assets/_up_/
31
32 # Tauri Android project — regenerated by `cargo tauri android init`. Android is not a
33 # bento target; the tree is re-initialized if/when android work resumes.
34 src-tauri/gen/android/
35
36 # Minified CSS — regenerated from styles.css by beforeBuildCommand (build-css.js).
37 # Matches balanced_breakfast; never commit the build output.
38 src-tauri/frontend/css/styles.min.css
39
40 # Claude Code instructions (project-local; not for the public repo)
41 CLAUDE.md
42
43 # Private working files — live in _private/, synced via Syncthing
44 todo.md
45
46 # Generated by src-tauri/build.rs from makeover's embedded theme set
47 /src-tauri/themes/
48