mirror of
https://github.com/misskey-dev/misskey
synced 2024-12-16 23:59:05 +09:00
12 lines
232 B
TypeScript
12 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);
|
|
});
|