-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (75 loc) · 1.82 KB
/
Copy path.gitignore
File metadata and controls
89 lines (75 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Dependencies
node_modules/
# Build outputs
dist/
out/
packages/*/dist/
apps/*/dist/
packages/*/out/
apps/*/out/
# Turbo cache
.turbo/
# Astro
.astro/
# Cloudflare local state and generated deployment artifacts
.wrangler/
.wrangler-deploy-*.toml
# Source maps
*.js.map
*.d.ts.map
# OS
.DS_Store
# Local env
.env
.env.local
.env.development.local
.env.production.local
# wrangler local secrets (committed only as .dev.vars.example)
.dev.vars
# Optional operator-only override containing real prod resource ids
# (wrangler.toml committed has placeholders; the dashboard is the
# source of truth for prod bindings).
wrangler.toml.local
wrangler.local.toml
# Internal runbooks — kept out of git until the corresponding feature
# ships. Authors live in ~/Documents/dev-docs/spool/; promote into
# docs/ via a follow-up commit only after launch.
docs/runbooks/
# Playwright e2e screenshots / diagnostic artefacts.
e2e-output/
# Spool DB (user data, not committed)
.spool/
# Browse tool session state
.gstack/
# Git worktrees
.worktrees/
.claude/worktrees/
# Native binaries
build/
*.node
# Compiled artifacts that may end up in src/ by mistake
*.tsbuildinfo
packages/*/src/**/*.js
apps/*/src/**/*.js
packages/*/src/**/*.d.ts
apps/*/src/**/*.d.ts
packages/*/src/**/*.js.map
apps/*/src/**/*.js.map
packages/*/src/**/*.d.ts.map
apps/*/src/**/*.d.ts.map
# Hand-written ambient declarations (exempt from the rule above)
!apps/app/src/env.d.ts
# Playwright
test-results/
playwright-report/
.playwright-mcp/
# Superpowers (agent-generated plans/specs)
.superpowers/
docs/superpowers/
# Release video build outputs (per-release; never committed)
# Source of truth is index.html + scripts. Assets (clips, audio, logos) are
# regenerated/sourced per release, not stored in git.
videos/*/assets/
videos/*/renders/
videos/*/.hyperframes/
videos/*/node_modules/