mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
|
|
import { defineConfig } from "drizzle-kit"
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
out: "./drizzle",
|
||
|
|
schema: "./src/db/schema.ts",
|
||
|
|
dialect: "postgresql",
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL!,
|
||
|
|
},
|
||
|
|
})
|