import { DatabaseModel, Rundown } from 'ontime-types'; import { ONTIME_VERSION } from '../ONTIME_VERSION.js'; export const defaultRundown: Rundown = { id: 'default', title: 'Default', order: [], flatOrder: [], entries: {}, revision: 0, }; export const dbModel: DatabaseModel = { rundowns: { default: { ...defaultRundown }, }, project: { title: '', description: '', backstageUrl: '', backstageInfo: '', projectLogo: null, custom: [], }, settings: { version: ONTIME_VERSION, serverPort: 4001, editorKey: null, operatorKey: null, timeFormat: '24', language: 'en', }, viewSettings: { overrideStyles: false, normalColor: '#ffffffcc', warningColor: '#FFAB33', dangerColor: '#ED3333', freezeEnd: false, endMessage: '', }, urlPresets: [], customFields: {}, automation: { enabledAutomations: true, enabledOscIn: true, oscPortIn: 8888, triggers: [], automations: {}, }, };