mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
11 lines
No EOL
325 B
TypeScript
11 lines
No EOL
325 B
TypeScript
import { Settings } from "./types.js";
|
|
|
|
/**
|
|
* Default settings.
|
|
*/
|
|
export const DEFAULT_SETTINGS: Settings = {
|
|
maxFileSize: 2 * 1024 * 1024, // 2MB in bytes
|
|
autoDeleteStaleRepos: true,
|
|
reindexInterval: 1000 * 60 * 60, // 1 hour in milliseconds
|
|
resyncInterval: 1000 * 60 * 60 * 24, // 1 day in milliseconds
|
|
} |