From 8c84415864064ece9d798ccd699efdb29b1c8a1f Mon Sep 17 00:00:00 2001 From: Jiayuan Zhang Date: Fri, 26 Jun 2026 10:02:27 +0200 Subject: [PATCH] docs(claude): note pnpm dev:desktop self-isolates per worktree (#4610) Clarify that desktop dev worktree isolation (renderer port + app name) is automatic and independent of .env.worktree, which only covers backend/ frontend DB names/ports. Follow-up to MUL-3724 (#4598). Co-authored-by: Lambda Co-authored-by: multica-agent --- CLAUDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index ebc7e9529..270f78b9a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -90,7 +90,7 @@ pnpm exec playwright test pnpm ui:add badge # shadcn/Base UI component into packages/ui ``` -Worktrees share one PostgreSQL container and get isolated DB names/ports via `.env.worktree`. `make dev` auto-detects this. For manual setup use `make worktree-env`, `make setup-worktree`, and `make start-worktree`. +Worktrees share one PostgreSQL container and get isolated DB names/ports via `.env.worktree`. `make dev` auto-detects this. For manual setup use `make worktree-env`, `make setup-worktree`, and `make start-worktree`. `pnpm dev:desktop` additionally self-isolates per worktree (its own renderer port + app name) automatically, independent of `.env.worktree`. CI runs Node 22, Go 1.26.1, and a `pgvector/pgvector:pg17` PostgreSQL service.