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

Function installDefaultExecutorWebBaseUrl

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

Source from the content-addressed store, hash-verified

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

Callers 2

runForegroundSessionFunction · 0.85
runDaemonSessionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected