mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
13 lines
No EOL
346 B
TypeScript
13 lines
No EOL
346 B
TypeScript
import { Settings } from "./types.js";
|
|
|
|
/**
|
|
* Default settings.
|
|
*/
|
|
export const DEFAULT_SETTINGS: Settings = {
|
|
maxFileSize: 2 * 1024 * 1024, // 2MB in bytes
|
|
autoDeleteStaleRepos: true,
|
|
reindexIntervalMs: 1000 * 60,
|
|
resyncConnectionPollingIntervalMs: 1000,
|
|
indexConcurrencyMultiple: 3,
|
|
configSyncConcurrencyMultiple: 3,
|
|
} |