Revert spike ports to 3001/5173, add stories 32 and 33

Reverts port changes made during the spike back to default (3001/5173).
Adds two new stories for multi-worktree support: dynamic port management
(story 32) and worktree diff inspection with editor integration (story 33).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dave
2026-02-19 15:30:23 +00:00
parent 68a19c393e
commit f17cd63d2f
6 changed files with 46 additions and 8 deletions

View File

@@ -226,7 +226,7 @@ export class ChatWebSocket {
const protocol = window.location.protocol === "https:" ? "wss" : "ws";
const wsHost = import.meta.env.DEV
? "127.0.0.1:3002"
? "127.0.0.1:3001"
: window.location.host;
const wsUrl = `${protocol}://${wsHost}${wsPath}`;

View File

@@ -5,9 +5,9 @@ import { defineConfig } from "vite";
export default defineConfig(() => ({
plugins: [react()],
server: {
port: 5174,
port: 5173,
proxy: {
"/api": "http://127.0.0.1:3002",
"/api": "http://127.0.0.1:3001",
},
},
build: {