kafe-nusantara / drizzle.config.ts
Eko Tristiyadi
Deploy Kafe Nusantara AI-Powered Cafe to HF Spaces
4859586
Raw
History Blame Contribute Delete
300 Bytes
import { defineConfig } from "drizzle-kit";
import * as dotenv from "dotenv";
dotenv.config({ path: ".env" });
export default defineConfig({
schema: "./src/db/schema/index.ts",
out: "./src/db/migrations",
dialect: "postgresql",
dbCredentials: {
url: process.env.DATABASE_URL!,
},
});