mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-01-06 04:32:37 +00:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
|
import type { Config } from "drizzle-kit";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
schema: "./packages/db/src/schema.ts",
|
||
|
|
out: "./packages/db/src/drizzle",
|
||
|
|
dialect: "postgresql",
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL || "",
|
||
|
|
},
|
||
|
|
} satisfies Config;
|