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

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

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