mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 12:43:09 -05:00
10 lines
203 B
JavaScript
10 lines
203 B
JavaScript
import run from './src/app.js';
|
|
import runMigrations from './src/migrations.js';
|
|
|
|
runMigrations()
|
|
.then(run)
|
|
.catch((err) => {
|
|
console.log('Error starting app:', err);
|
|
process.exit(1);
|
|
});
|