You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/setup.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,15 @@ This launcher is intended for deployment as a sidecar container alongside one or
20
20
"PATH",
21
21
"GENERIC_TIMEZONE",
22
22
],
23
-
"override-envs": [
24
-
"N8N_RUNNERS_TASK_TIMEOUT=80",
25
-
"N8N_RUNNERS_AUTO_SHUTDOWN_TIMEOUT=120",
26
-
"N8N_RUNNERS_MAX_CONCURRENCY=3",
27
-
"NODE_FUNCTION_ALLOW_BUILTIN=crypto",
28
-
"NODE_FUNCTION_ALLOW_EXTERNAL=moment"
29
-
"NODE_OPTIONS=--max-old-space-size=4096",
30
-
]
31
-
},
23
+
"env-overrides": {
24
+
"N8N_RUNNERS_TASK_TIMEOUT": "80",
25
+
"N8N_RUNNERS_AUTO_SHUTDOWN_TIMEOUT": "120",
26
+
"N8N_RUNNERS_MAX_CONCURRENCY": "3",
27
+
"NODE_FUNCTION_ALLOW_BUILTIN": "crypto",
28
+
"NODE_FUNCTION_ALLOW_EXTERNAL": "moment",
29
+
"NODE_OPTIONS": "--max-old-space-size=4096"
30
+
}
31
+
}
32
32
]
33
33
}
34
34
```
@@ -39,7 +39,7 @@ Task runner config fields:
39
39
-`workdir` is the path to directory containing the task runner binary.
40
40
-`command` is the command to execute in order to start the task runner.
41
41
-`args` are the args for the command to execute, currently the path to the task runner entrypoint.
42
-
-`allowed-env` and `override-envs` are env vars that the launcher will pass through to or set directly on the runner, respectively. See [environment](environment.md).
42
+
-`allowed-env` and `env-overrides` are env vars that the launcher will pass through to or set directly on the runner, respectively. See [environment](environment.md).
43
43
44
44
3. Set the **environment variables** for the launcher.
0 commit comments