Spaces:
Sleeping
Sleeping
File size: 300 Bytes
4859586 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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!,
},
});
|