We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bcc67d commit 405f5e9Copy full SHA for 405f5e9
apps/supervisor/src/env.ts
@@ -26,6 +26,7 @@ const Env = z.object({
26
// Runner settings
27
RUNNER_HEARTBEAT_INTERVAL_SECONDS: z.coerce.number().optional(),
28
RUNNER_SNAPSHOT_POLL_INTERVAL_SECONDS: z.coerce.number().optional(),
29
+ RUNNER_ADDITIONAL_ENV_VARS: AdditionalEnvVars, // optional (csv)
30
31
// Dequeue settings (provider mode)
32
TRIGGER_DEQUEUE_ENABLED: BoolEnv.default("true"),
@@ -68,9 +69,6 @@ const Env = z.object({
68
69
70
// Debug
71
DEBUG: BoolEnv.default(false),
-
72
- // Additional environment variables (CSV format)
73
- RUNNER_ADDITIONAL_ENV_VARS: AdditionalEnvVars,
74
});
75
76
export const env = Env.parse(stdEnv);
0 commit comments