mirror of
https://git.sr.ht/~roxwize/mipilin
synced 2025-01-31 02:53:36 +00:00
12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
|
import "dotenv/config";
|
||
|
import { defineConfig } from "drizzle-kit";
|
||
|
|
||
|
export default defineConfig({
|
||
|
out: "./drizzle",
|
||
|
schema: "./db/schema.ts",
|
||
|
dialect: "postgresql",
|
||
|
dbCredentials: {
|
||
|
url: process.env.DATABASE_URL
|
||
|
}
|
||
|
});
|