sourcebot/packages/backend/src/constants.ts

11 lines
329 B
TypeScript
Raw Normal View History

import { Settings } from "./types.js";
2024-10-17 20:31:18 +00:00
/**
* Default settings.
*/
export const DEFAULT_SETTINGS: Settings = {
maxFileSize: 2 * 1024 * 1024, // 2MB in bytes
autoDeleteStaleRepos: true,
2025-01-14 21:37:31 +00:00
reindexIntervalMs: 1000 * 60 * 60, // 1 hour in milliseconds
resyncIntervalMs: 1000 * 60 * 60 * 24, // 1 day in milliseconds
}