1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/mipilin synced 2025-01-30 10:53:36 +00:00
mipilin/drizzle.config.ts
roxwize e3c09d7f0d
this is the initial commit for my AWESOME website
Signed-off-by: roxwize <rae@roxwize.xyz>
2024-11-13 22:51:08 -05:00

11 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
}
});