.gitignore
63 lines 1.4 KB
Raw
1 # Config and secrets
2 config/local.yaml
3 config/*-local.*
4 .env
5 .env.*
6 !.env.example
7
8 # Data
9 data/
10 out/
11 *.db
12 *.sqlite
13
14 # Test artifacts (temp vaults and vector DB from tests)
15 test/fixtures/data/
16 test/fixtures/hub-setup-test-data/
17 test/fixtures/tmp-*/
18
19 # Obsidian
20 vault/.obsidian/workspace*
21 vault/.trash/
22
23 # Hub UI “New note” timestamped files (avoid dirty tree on the sample vault)
24 vault/inbox/note-*.md
25
26 # Editor scratch files
27 Untitled
28 **/Untitled
29 config/Untitled
30
31 # DFX local build (do not commit)
32 hub/icp/.dfx/
33
34 # Node
35 node_modules/
36
37 # Netlify — written by scripts/netlify-redirects.mjs (gateway vs bridge); do not commit
38 public/_redirects
39
40 # OS
41 .DS_Store
42 *.log
43
44 # Development — local-only planning, scratch exports, copies of docs removed from docs/ for OSS cleanliness
45 development/
46
47 # Local doc snapshots (session prompts, old plans) — not published; mirror into development/ or docs/archive locally
48 docs/archive/
49
50 # Internal marketing / GTM docs — keep locally or in a private repo; never push to public GitHub
51 docs/marketing-internal/
52
53 # Cursor IDE — plan snapshots (YAML frontmatter exports); rules/skills stay tracked
54 .cursor/plans/
55
56 # Local VS Code / Cursor workspace under docs (do not commit)
57 docs/*.code-workspace
58
59 # Operational scratch / runbook exports (maintainers keep under development/ or local only)
60 scripts/archive/
61
62 # Local transcription / chunk scratch (do not commit binaries)
63 .tmp-transcribe-chunks/
File History 1 commit