2025-09-21 11:02:31 -07:00
|
|
|
import { config } from "dotenv";
|
|
|
|
|
import { defineConfig } from "drizzle-kit";
|
2024-10-11 18:00:22 +05:30
|
|
|
|
|
|
|
|
config({
|
2025-09-21 11:02:31 -07:00
|
|
|
path: ".env.local",
|
2024-10-11 18:00:22 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
2025-09-21 11:02:31 -07:00
|
|
|
schema: "./lib/db/schema.ts",
|
|
|
|
|
out: "./lib/db/migrations",
|
|
|
|
|
dialect: "postgresql",
|
2024-10-11 18:00:22 +05:30
|
|
|
dbCredentials: {
|
2026-03-20 09:37:02 +00:00
|
|
|
url: process.env.POSTGRES_URL ?? "",
|
2024-10-11 18:00:22 +05:30
|
|
|
},
|
|
|
|
|
});
|