mirror of
https://github.com/langgenius/dify.git
synced 2025-07-24 18:10:36 +00:00
10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
import type { AutoUpdateConfig } from './types'
|
|
import { AUTO_UPDATE_MODE, AUTO_UPDATE_STRATEGY } from './types'
|
|
export const defaultValue: AutoUpdateConfig = {
|
|
strategy_setting: AUTO_UPDATE_STRATEGY.fixOnly, // For test
|
|
upgrade_time_of_day: 0,
|
|
upgrade_mode: AUTO_UPDATE_MODE.update_all,
|
|
exclude_plugins: [],
|
|
include_plugins: [],
|
|
}
|