mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-03 03:07:28 +00: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);
|
|
});
|