Skip to content

Commit dfd5a91

Browse files
committed
chore(claude): commit preview launch config
Track .claude/launch.json so every worktree gets the preview server config (web on :3000, db-studio on :4983) without re-creating it. Also ignore .claude/worktrees so the per-worktree subtree never gets accidentally committed.
1 parent f1dec64 commit dfd5a91

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

.claude/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.0.1",
3+
"configurations": [
4+
{
5+
"name": "web",
6+
"runtimeExecutable": "pnpm",
7+
"runtimeArgs": ["dev"],
8+
"port": 3000
9+
},
10+
{
11+
"name": "db-studio",
12+
"runtimeExecutable": "pnpm",
13+
"runtimeArgs": ["db:studio"],
14+
"port": 4983
15+
}
16+
]
17+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ dist
3131

3232
test-results
3333
.claude/CLAUDE.md
34+
.claude/worktrees
3435
.eslintcache
3536
.tsbuildinfo
3637
src/routeTree.gen.ts

0 commit comments

Comments
 (0)