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

Function getDevDataPath

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

Source from the content-addressed store, hash-verified

226}
227
228function getDevDataPath(): string {
229 const sPath = path.join(getContinueGlobalPath(), "dev_data");
230 if (!fs.existsSync(sPath)) {
231 fs.mkdirSync(sPath);
232 }
233 return sPath;
234}
235
236export function getDevDataSqlitePath(): string {
237 return path.join(getDevDataPath(), "devdata.sqlite");

Callers 3

getDevDataSqlitePathFunction · 0.85
getDevDataFilePathFunction · 0.85
migrateV1DevDataFilesFunction · 0.85

Calls 1

getContinueGlobalPathFunction · 0.85

Tested by

no test coverage detected