summary refs log tree commit diff
path: root/src/apply-migrations.ts
blob: d074c704bddf616283dbf780bcddc18479ead4c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import moduleAlias from "module-alias";
moduleAlias(__dirname + "../../package.json");
process.on("uncaughtException", console.error);
process.on("unhandledRejection", console.error);

import { config } from "dotenv";
config({ quiet: true });

process.env.DB_LOGGING = "true";

import { closeDatabase, initDatabase } from "@spacebar/util";

async function main() {
    let success = false;
    while (!success) {
        try {
            await initDatabase().then(async () => {
                await closeDatabase().then(async () => {
                    console.log("Successfully applied migrations!");
                    success = true;
                });
            });
        } catch (e) {
            console.error("Failed to apply migrations, retrying in 2s...", e);
            await new Promise((res) => void setTimeout(res, 2000));
            await main();
        }
    }
}

main().then(() => console.log("meow"));