Burn it all to the ground and start with bun and a reorg

This commit is contained in:
2025-05-09 17:51:29 +01:00
parent 6eaf1d6b9f
commit 95f317fd75
82 changed files with 3001 additions and 13108 deletions

View File

@@ -1,10 +1,11 @@
import { defineConfig } from 'drizzle-kit';
import type { Config } from "drizzle-kit";
export default defineConfig({
out: './drizzle',
schema: './src/db/schema',
dialect: 'sqlite',
dbCredentials: {
url: `${process.cwd()}/db.sql`,
},
});
import { env } from "@/env";
export default {
schema: "./src/server/db/schema.ts",
dialect: "sqlite",
dbCredentials: {
url: env.DATABASE_URL,
},
} satisfies Config;