Skip to content

Commit 405f5e9

Browse files
committed
move all runner env vars to the same section
1 parent 9bcc67d commit 405f5e9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

apps/supervisor/src/env.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const Env = z.object({
2626
// Runner settings
2727
RUNNER_HEARTBEAT_INTERVAL_SECONDS: z.coerce.number().optional(),
2828
RUNNER_SNAPSHOT_POLL_INTERVAL_SECONDS: z.coerce.number().optional(),
29+
RUNNER_ADDITIONAL_ENV_VARS: AdditionalEnvVars, // optional (csv)
2930

3031
// Dequeue settings (provider mode)
3132
TRIGGER_DEQUEUE_ENABLED: BoolEnv.default("true"),
@@ -68,9 +69,6 @@ const Env = z.object({
6869

6970
// Debug
7071
DEBUG: BoolEnv.default(false),
71-
72-
// Additional environment variables (CSV format)
73-
RUNNER_ADDITIONAL_ENV_VARS: AdditionalEnvVars,
7472
});
7573

7674
export const env = Env.parse(stdEnv);

0 commit comments

Comments
 (0)