(input: {
readonly kind: ExecutorLocalServerKind;
readonly connection: ExecutorServerConnection;
})
| 408 | }); |
| 409 | |
| 410 | const publishLocalServerManifest = (input: { |
| 411 | readonly kind: ExecutorLocalServerKind; |
| 412 | readonly connection: ExecutorServerConnection; |
| 413 | }): Effect.Effect<void, PlatformError, FileSystem.FileSystem | PlatformPath.Path> => |
| 414 | Effect.gen(function* () { |
| 415 | const manifest = yield* makeLocalServerManifest(input); |
| 416 | yield* writeLocalServerManifest(manifest); |
| 417 | }); |
| 418 | |
| 419 | const installDefaultExecutorWebBaseUrl = (baseUrl: string): (() => void) => { |
| 420 | if (process.env.EXECUTOR_WEB_BASE_URL !== undefined) { |
no test coverage detected