(input: {
readonly kind: ExecutorLocalServerKind;
readonly connection: ExecutorServerConnection;
})
| 422 | }); |
| 423 | |
| 424 | const publishLocalServerManifest = (input: { |
| 425 | readonly kind: ExecutorLocalServerKind; |
| 426 | readonly connection: ExecutorServerConnection; |
| 427 | }): Effect.Effect<void, PlatformError, FileSystem.FileSystem | PlatformPath.Path> => |
| 428 | Effect.gen(function* () { |
| 429 | const manifest = yield* makeLocalServerManifest(input); |
| 430 | yield* writeLocalServerManifest(manifest); |
| 431 | }); |
| 432 | |
| 433 | const installDefaultExecutorWebBaseUrl = (baseUrl: string): (() => void) => { |
| 434 | if (process.env.EXECUTOR_WEB_BASE_URL !== undefined) { |
no test coverage detected