Extracted stack files

This commit is contained in:
ka-official
2026-03-25 20:56:28 +00:00
parent 37d0fa9ff3
commit 2d94c769a4
75 changed files with 14782 additions and 53 deletions

14
drizzle.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from "drizzle-kit";
if (!process.env.DATABASE_URL) {
throw new Error("DATABASE_URL, ensure the database is provisioned");
}
export default defineConfig({
out: "./migrations",
schema: "./shared/schema.ts",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL,
},
});