From dfd5a910805d12538775ba8bdb85bd37e2c4d55c Mon Sep 17 00:00:00 2001 From: Tanner Linsley Date: Fri, 1 May 2026 15:43:06 -0600 Subject: [PATCH] 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. --- .claude/launch.json | 17 +++++++++++++++++ .gitignore | 1 + 2 files changed, 18 insertions(+) create mode 100644 .claude/launch.json diff --git a/.claude/launch.json b/.claude/launch.json new file mode 100644 index 000000000..7e34cf155 --- /dev/null +++ b/.claude/launch.json @@ -0,0 +1,17 @@ +{ + "version": "0.0.1", + "configurations": [ + { + "name": "web", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["dev"], + "port": 3000 + }, + { + "name": "db-studio", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["db:studio"], + "port": 4983 + } + ] +} diff --git a/.gitignore b/.gitignore index 938c6fae1..0b8a85b53 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,7 @@ dist test-results .claude/CLAUDE.md +.claude/worktrees .eslintcache .tsbuildinfo src/routeTree.gen.ts