Ready for release soon.

This commit is contained in:
charlesgauthereau
2025-07-16 20:34:28 +02:00
parent 5e704ec18a
commit 7abdcd57f9
6 changed files with 18 additions and 13 deletions
+5 -6
View File
@@ -1,16 +1,15 @@
import { env } from "@/env.mjs";
import { db } from "@/db";
import {db, makeMigration} from "@/db";
import { eq } from "drizzle-orm";
import * as drizzleDb from "@/db";
export function init() {
export async function init() {
consoleAscii();
console.log("====Init Functions====");
createDefaultOrganization().then(() => {});
createSettingsIfNotExist()
await makeMigration();
await createDefaultOrganization();
await createSettingsIfNotExist()
.then(() => {
console.log("====Initialization completed====");
})