mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 20:35:24 +00:00
25 lines
No EOL
1,000 B
TypeScript
25 lines
No EOL
1,000 B
TypeScript
import { Settings } from "./types.js";
|
|
|
|
/**
|
|
* Default settings.
|
|
*/
|
|
export const DEFAULT_SETTINGS: Settings = {
|
|
maxFileSize: 2 * 1024 * 1024, // 2MB in bytes
|
|
maxTrigramCount: 20000,
|
|
reindexIntervalMs: 1000 * 60 * 60, // 1 hour
|
|
resyncConnectionIntervalMs: 1000 * 60 * 60 * 24, // 24 hours
|
|
resyncConnectionPollingIntervalMs: 1000 * 1, // 1 second
|
|
reindexRepoPollingIntervalMs: 1000 * 1, // 1 second
|
|
maxConnectionSyncJobConcurrency: 8,
|
|
maxRepoIndexingJobConcurrency: 8,
|
|
maxRepoGarbageCollectionJobConcurrency: 8,
|
|
repoGarbageCollectionGracePeriodMs: 10 * 1000, // 10 seconds
|
|
repoIndexTimeoutMs: 1000 * 60 * 60 * 2, // 2 hours
|
|
enablePublicAccess: false, // deprected, use FORCE_ENABLE_ANONYMOUS_ACCESS instead
|
|
experiment_repoDrivenPermissionSyncIntervalMs: 1000 * 60 * 60 * 24, // 24 hours
|
|
experiment_userDrivenPermissionSyncIntervalMs: 1000 * 60 * 60 * 24, // 24 hours
|
|
}
|
|
|
|
export const PERMISSION_SYNC_SUPPORTED_CODE_HOST_TYPES = [
|
|
'github',
|
|
]; |