feat(sync): add sync subsystem: SyncManager, OpsServer sync handlers, Sync UI and state, provider groupFilter support, and realtime sync log streaming via TypedSocket
This commit is contained in:
@@ -4,6 +4,7 @@ export interface IGitopsPaths {
|
||||
gitopsHomeDir: string;
|
||||
defaultStoragePath: string;
|
||||
defaultTsmDbPath: string;
|
||||
syncMirrorsPath: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -15,5 +16,6 @@ export function resolvePaths(baseDir?: string): IGitopsPaths {
|
||||
gitopsHomeDir: home,
|
||||
defaultStoragePath: path.join(home, 'storage'),
|
||||
defaultTsmDbPath: path.join(home, 'tsmdb'),
|
||||
syncMirrorsPath: path.join(home, 'mirrors'),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user