-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.gitignore
More file actions
98 lines (78 loc) · 1.66 KB
/
.gitignore
File metadata and controls
98 lines (78 loc) · 1.66 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
90
91
92
93
94
95
96
97
98
# GSD workflow state
.planning/
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
package-lock.json
deno.lock
node_modules
dist
dist-ssr
*.local
**/.vite
# Environment files
.env
**/.env
# Editor directories and files
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.wrangler
dist
.dev.vars
kv
kv-shm
kv-wal
.specstory/**
.tsbuildinfo
# SQLite database files (legacy)
*.db
*.db-shm
*.db-wal
# Embedded PostgreSQL database directories
*.pglite
.playwright-mcp/
# Local test files
deploy/auth-config.json
deploy/docs
deploy/test*
# Data Test files
apps/benchmark/data
# AI planning files (root-level only, not docs/plans/)
/plans
.cursor/plans
# Local demo/prototype directories
studio-demo/
# Git worktrees
.worktrees
.claude/worktrees
# Playwright
apps/mesh/test-results/
apps/mesh/playwright-report/
# Generated docs (root-level only, not apps/docs/)
/docs
# Local dev data directory
.deco
# `helm package deploy/helm/sandbox-operator` (and …/sandbox-env) produces a
# .tgz that is published to ghcr.io as an OCI artifact by
# .github/workflows/release-sandbox-charts.yaml. The unpacked trees under
# deploy/helm/sandbox-{operator,env}/ are the source of truth; the packaged
# .tgz is redundant in-repo and would just drift.
deploy/helm/sandbox-operator-*.tgz
deploy/helm/sandbox-operator/charts/
deploy/helm/sandbox-env-*.tgz
deploy/helm/sandbox-env/charts/
# `helm dependency update` for the studio chart caches remote subcharts
# (nats, opentelemetry-collector) as .tgz under charts/. They stay tracked
# because the chart pins specific versions and offline installs depend on
# them being present.