MCPcopy Index your code
hub / github.com/continuedev/continue / getRemoteConfigsFolderPath

Function getRemoteConfigsFolderPath

core/util/paths.ts:342–348  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

340}
341
342export function getRemoteConfigsFolderPath(): string {
343 const dir = path.join(getContinueGlobalPath(), ".configs");
344 if (!fs.existsSync(dir)) {
345 fs.mkdirSync(dir);
346 }
347 return dir;
348}
349
350export function getPathToRemoteConfig(remoteConfigServerUrl: string): string {
351 let url: URL | undefined = undefined;

Callers 1

getPathToRemoteConfigFunction · 0.85

Calls 1

getContinueGlobalPathFunction · 0.85

Tested by

no test coverage detected