mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
* Migrating Fredy from LowDb to SqLite 🎉
* adding new sql migration system for future sql migrations
* adding setting to change sqlite path for db files
* create migration plan for graceful migration lowdb -> sqlite
* Improving Documentation
* adding test for sqliteconnection
* upgrading dependencies
* making nodejs 22 as min version
* improve scraper
* adding overwrite ability for db migra
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
export const DEFAULT_CONFIG = {
|
|
interval: '60',
|
|
port: 9998,
|
|
workingHours: { from: '', to: '' },
|
|
demoMode: false,
|
|
analyticsEnabled: null,
|
|
// Default path for sqlite storage directory. Interpreted relative to project root.
|
|
sqlitepath: '/db',
|
|
};
|