Listen on HOST and PORT instead of a bind address (#666)

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Gregory Schier
2026-09-15 13:27:07 -07:00
committed by GitHub
co-authored by Claude Opus 5
parent 5a793e1d42
commit 8a6e4810fd
9 changed files with 141 additions and 40 deletions
+5 -1
View File
@@ -94,7 +94,11 @@ switch (mode) {
// The send executor behind the dev server, on the port a dev build looks for.
case "proxy":
serve(buildServer(), []);
serve(buildServer(), [], {
// So opening the send server's port in a browser lands on the app instead
// of an explanation of why the app is not there.
YAAK_WEB_APP_PORT: process.env.YAAK_CLIENT_DEV_PORT ?? process.env.YAAK_DEV_PORT ?? "1420",
});
break;
case "build":