From 31a501f75bfdbbae8c836cdfa1e142150079f90d Mon Sep 17 00:00:00 2001 From: user Date: Sat, 28 Mar 2026 18:43:39 +0200 Subject: [PATCH] public url setup --- packages/settings/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/settings/index.ts b/packages/settings/index.ts index cf31785..f37ab15 100644 --- a/packages/settings/index.ts +++ b/packages/settings/index.ts @@ -20,6 +20,7 @@ export const settingsSchema = v.object({ orchestratorApiUrl: v.string(), publicWsScrcpySvcUrl: v.string(), + publicFrontendUrl: v.string(), betterAuthUrl: v.string(), betterAuthSecret: v.string(), @@ -88,6 +89,7 @@ function loadSettings(): Settings { "http://localhost:3000", ), publicWsScrcpySvcUrl: getEnv("PUBLIC_WS_SCRCPY_SVC_URL"), + publicFrontendUrl: getEnv("PUBLIC_FRONTEND_URL"), betterAuthUrl: getEnv("BETTER_AUTH_URL"), betterAuthSecret: getEnv("BETTER_AUTH_SECRET"),