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
| `entry` | path to the node application | `string` | `'./server/app.js'` |
33
-
| `args` | additional arguments to pass to your application | `Array<string>` | |
34
-
| `useDoppler` | whether to run the application with environment variables from Doppler | `boolean` | `true` |
35
-
| `ports` | ports to try to bind to for this application. set to `false` for an entry point that wouldn't bind to a port, such as a worker process or one-off script. | `Array<number> \| false` | `[3001,3002,3003]` |
36
-
| `watch` | run Node in watch mode, which restarts your application when the entrypoint or any imported files are changed. **nb** this option is experimental in versions of Node before v20.13. | `boolean` | |
| `entry` | path to the node application | `string` | `'./server/app.js'` |
33
+
| `args` | additional arguments to pass to your application | `Array<string>` | |
34
+
| `useDoppler` | whether to run the application with environment variables from Doppler | `boolean` | `true` |
35
+
| `ports` | ports to try to bind to for this application. set to `false` for an entry point that wouldn't bind to a port, such as a worker process or one-off script. | `Array<number> \| false` | `[3001,3002,3003]` |
36
+
| `watch` | run Node in watch mode, which restarts your application when the entrypoint or any imported files are changed. **nb** this option is experimental in versions of Node before v20.13. | `boolean` | |
37
+
| `background` | run the Node process in the background, i.e. don't wait for it to exit before continuing to other Tool Kit tasks. set to `false` to wait for the process to exit, useful for running scripts or [multiple Tool Kit tasks in parallel](../parallel). | `boolean` | `true` |
| `ports` | ports to try to bind to for this application | `Array<number>` | `[3001,3002,3003]` |
33
+
| `useDoppler` | run the application with environment variables from Doppler | `boolean` | `true` |
34
+
| `background` | run the `serverless oflfine` process in the background, i.e. don't wait for it to exit before continuing to other Tool Kit tasks. set to `false` to wait for the process to exit, useful for running [multiple Tool Kit tasks in parallel](../parallel). | `boolean` | `true` |
0 commit comments