mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 07:36:44 -06:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
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);
|
|
});
|