summaryrefslogtreecommitdiff
path: root/src/init.ts
blob: 2fe16a70697a3b3ad2208e7aeb3baa39521a7270 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { initDb } from './db/postgre';

console.log('Init database...');

initDb(false, true, true).then(() => {
	console.log('Done :)');
	process.exit(0);
}, e => {
	console.error('Failed to init database');
	console.error(e);
});