mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
7ff75835ff
* refactor: partial state updates * refactor: less calls to restore * refactor: add error stack trace to log
23 lines
534 B
TypeScript
23 lines
534 B
TypeScript
export const config = {
|
|
database: {
|
|
testdb: 'test-db',
|
|
directory: 'db',
|
|
filename: 'db.json',
|
|
},
|
|
styles: {
|
|
directory: 'styles',
|
|
filename: 'override.css',
|
|
},
|
|
demo: {
|
|
directory: 'demo',
|
|
filename: ['app.js', 'index.html', 'styles.css'],
|
|
},
|
|
restoreFile: 'ontime.restore',
|
|
};
|
|
|
|
export const timerConfig = {
|
|
skipLimit: 1000, // threshold of skip for recalculating
|
|
updateRate: 32, // how often do we update the timer
|
|
notificationRate: 1000, // how often do we notify clients and integrations
|
|
};
|