From 47a9aef46682a20c5b2126221b82ed12a24d4f92 Mon Sep 17 00:00:00 2001 From: tajniak81 <13187254+tajniak81@users.noreply.github.com> Date: Mon, 17 Aug 2026 11:40:53 +0200 Subject: [PATCH] Dev: add web-bff launch config for the production BFF on :8090 Runs the Web App Go BFF (go run . in Web App/server) that serves the embedded dist and proxies /api -> :8080, so the compiled bundle can be verified locally alongside the Vite dev server. Co-Authored-By: Claude Opus 4.8 --- .claude/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.claude/launch.json b/.claude/launch.json index 0559cdc..afabfdb 100644 --- a/.claude/launch.json +++ b/.claude/launch.json @@ -17,6 +17,14 @@ "port": 5173, "autoPort": false }, + { + "name": "web-bff", + "runtimeExecutable": "go", + "runtimeArgs": ["run", "."], + "cwd": "Web App/server", + "port": 8090, + "autoPort": false + }, { "name": "panel", "runtimeExecutable": "npm",