mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
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);
|
|
});
|