fix(workspace): stabilise the development stack (#2024)

This commit is contained in:
Hampus
2026-08-26 18:52:53 +02:00
committed by GitHub
parent cf1a7d7a8a
commit 5d2e5932a4
55 changed files with 1848 additions and 3396 deletions
+1
View File
@@ -195,6 +195,7 @@ function defaultConfig(): MasterConfig {
api_key: '',
api_secret: '',
url: '',
internal_url: '',
webhook_url: '',
},
search: {
+1
View File
@@ -243,6 +243,7 @@ export interface MasterConfig {
api_key: string;
api_secret: string;
url: string;
internal_url: string;
webhook_url: string;
default_region?: {
id: string;
@@ -266,6 +266,7 @@ const NAMED_FLUXER_ENV_OVERRIDES: Record<string, NamedEnvOverride> = {
FLUXER_LIVEKIT_API_KEY: {path: ['integrations', 'voice', 'api_key']},
FLUXER_LIVEKIT_API_SECRET: {path: ['integrations', 'voice', 'api_secret']},
FLUXER_LIVEKIT_URL: {path: ['integrations', 'voice', 'url']},
FLUXER_LIVEKIT_INTERNAL_URL: {path: ['integrations', 'voice', 'internal_url']},
FLUXER_LIVEKIT_WEBHOOK_URL: {path: ['integrations', 'voice', 'webhook_url']},
FLUXER_LIVEKIT_DEFAULT_REGION: {path: ['integrations', 'voice', 'default_region'], parse: parseEnvValue},
FLUXER_SEARCH_ENGINE: {path: ['integrations', 'search', 'engine']},