2024-12-09 22:34:43 +00:00
|
|
|
import { Settings } from "./types.js";
|
2024-10-17 20:31:18 +00:00
|
|
|
|
2024-12-09 22:34:43 +00:00
|
|
|
/**
|
|
|
|
|
* Default settings.
|
|
|
|
|
*/
|
|
|
|
|
export const DEFAULT_SETTINGS: Settings = {
|
|
|
|
|
maxFileSize: 2 * 1024 * 1024, // 2MB in bytes
|
2024-12-13 20:34:02 +00:00
|
|
|
autoDeleteStaleRepos: true,
|
2025-01-15 23:44:42 +00:00
|
|
|
reindexIntervalMs: 1000 * 60,
|
2025-01-24 21:16:08 +00:00
|
|
|
resyncConnectionPollingIntervalMs: 1000,
|
2025-02-15 18:00:44 +00:00
|
|
|
reindexRepoPollingIntervalMs: 1000,
|
2025-01-15 23:44:42 +00:00
|
|
|
indexConcurrencyMultiple: 3,
|
2025-01-21 19:50:35 +00:00
|
|
|
configSyncConcurrencyMultiple: 3,
|
2024-12-09 22:34:43 +00:00
|
|
|
}
|