-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
144 lines (122 loc) · 3.94 KB
/
Copy path.gitignore
File metadata and controls
144 lines (122 loc) · 3.94 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# Dev tooling
# (put individual local dev tooling stuff here)
# Environment files
.env
.env.local
.env.keys
*.local
.env.keys
# Encrypted, safe to commit
!.env.production
!.env.staging
!.env.ci
# Dependencies
node_modules
/pantry
# Locally packed tarballs. These are throwaway artifacts of `bun pm pack` /
# `npm pack` used to test an unpublished dependency, and one committed by
# accident ships to every project scaffolded from this template.
*.tgz
# Commit both lockfiles. Pantry owns the complete machine and project graph;
# Bun's lock remains the runtime package-manager lock used by Bun commands.
# QA
test-results
tests/unit/coverage
dist*
# IDE files
.fleet
.idea
.vscode
.cursor
.zed
# Git files
!.gitkeep
# Database files
database/stacks_testing.sqlite
database/stacks.sqlite
database/*.sqlite-wal
database/*.sqlite-shm
# OS files
.DS_Store
.DS_STORE
# Build files
.cache
temp
.temp
data.ms
generated/*
.stx-serve
custom-cli
*bun-build
discovered-packages.json
# Runtime state. It all lives under storage/ now:
# storage/framework/stx stx build cache + generated route manifest
# storage/framework/runtime migration lock, temp bundles, CLI scratch
# storage/cloud cloud driver state + dashboard credentials
storage/framework/stx/
storage/framework/runtime/
storage/cloud/
# Pre-relocation names of the three directories above. stx and ts-cloud each
# take their state directory from config now (`stateDir` in config/ui.ts and
# config/cloud.ts), so nothing is left in the project root - but a checkout that
# predates the move still has these until `ensureRuntimeDirectories()` migrates
# them, and they should never be committed in the meantime.
/.stx
/.ts-cloud
/.stacks
# Opt-in convenience symlink to storage/framework, created by
# `buddy generate:core-symlink`. Core developers only.
/.framework
# AI coding-agent setup, scaffolded by `buddy setup:ai` from the templates in
# storage/framework/defaults/ai. Which agent you use is a personal choice, so
# everything it generates stays out of the repo. AGENTS.md is the exception: it
# is shared guidance every agent reads, so it is authored and committed, and
# `setup:ai` only ever seeds it when it is missing.
/.claude
/.codex
/.gemini
/CLAUDE.md
/GEMINI.md
/.github/copilot-instructions.md
# Stub workspace packages (temporary)
/ts-auth
/ts-cloud
/ts-craft
/ts-md
/ts-open-api
/ts-pantry
/ts-security-crypto
/bun-queue
/headwind
/bun-plugin-stx
pantry
# Build artifact directory used by docs/build steps — never tracked.
storage/framework/cache/
# Persisted by `buddy update` to remember whether the project is following the
# `stable` or `canary` channel. Local preference only — the channel choice
# doesn't need to be shared across team members or CI.
.stacks-channel
# Persisted by `buddy update`: last-synced channel + commit sha for the
# up-to-date short-circuit. Local-only — like the channel, it's per-checkout.
.stacks-version
# Temp directory used during a `buddy update` GitHub fetch. Cleaned up by the
# upgrade action on success but listed here to keep stray copies (e.g. from a
# kill -9'd run) out of commits.
.tmp-upgrade/
/storage/framework/frontend-dist
/storage/framework/desktop-dist
# Per-package runtime logs created when building a core package in place
storage/framework/core/**/storage/logs/
storage/framework/**/storage/logs/
# @stacksjs/defaults copies resources + app from storage/framework/defaults at build time
# @stacksjs/defaults is a publish wrapper. Its generated scaffold is rebuilt
# from storage/framework/defaults by core/defaults/build.ts.
storage/framework/core/defaults/*
!storage/framework/core/defaults/README.md
!storage/framework/core/defaults/build.ts
!storage/framework/core/defaults/package.json
!storage/framework/core/defaults/tests/
!storage/framework/core/defaults/tests/**
# The local access token, minted per boot when the server runs with --remote.
# Anything holding this can dispatch commands, and a command starts an agent.
storage/private/harness.token