mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { DittoConf } from '@ditto/conf';
|
|
import { DittoPolyPg } from '@ditto/db';
|
|
|
|
const conf = new DittoConf(Deno.env);
|
|
await using db = new DittoPolyPg(conf.databaseUrl);
|
|
|
|
await db.migrate();
|
|
|
|
Deno.exit();
|