a new 'base app' which gon get deployed on prem

This commit is contained in:
user
2026-03-28 11:31:16 +02:00
parent c7c303a934
commit 94af2a2065
17 changed files with 2525 additions and 322 deletions

View File

@@ -19,10 +19,6 @@ export const settingsSchema = v.object({
debugKey: v.string(),
processorApiUrl: v.string(),
appBuilderApiUrl: v.string(),
appBuilderAssetsPublicUrl: v.string(),
clientDownloadedApkName: v.string(),
mobileAppApiUrl: v.string(),
betterAuthUrl: v.string(),
betterAuthSecret: v.string(),
@@ -108,11 +104,6 @@ function loadSettings(): Settings {
"APP_BUILDER_ASSETS_PUBLIC_URL",
"http://localhost:3001",
),
clientDownloadedApkName: getEnv(
"CLIENT_DOWNLOADED_APK_NAME",
"illusory-client.apk",
),
mobileAppApiUrl: getEnv("MOBILE_APP_API_URL"),
betterAuthUrl: getEnv("BETTER_AUTH_URL"),
betterAuthSecret: getEnv("BETTER_AUTH_SECRET"),