MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / installDefaultExecutorWebBaseUrl

Function installDefaultExecutorWebBaseUrl

apps/cli/src/main.ts:433–442  ·  view source on GitHub ↗
(baseUrl: string)

Source from the content-addressed store, hash-verified

431 });
432
433const installDefaultExecutorWebBaseUrl = (baseUrl: string): (() => void) => {
434 if (process.env.EXECUTOR_WEB_BASE_URL !== undefined) {
435 return () => {};
436 }
437
438 process.env.EXECUTOR_WEB_BASE_URL = baseUrl;
439 return () => {
440 delete process.env.EXECUTOR_WEB_BASE_URL;
441 };
442};
443
444const cleanupPointer = (input: { hostname: string; scopeId: string; port: number }) =>
445 Effect.gen(function* () {

Callers 2

runForegroundSessionFunction · 0.85
runDaemonSessionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected