mirror of
https://github.com/jakejarvis/hoot.git
synced 2025-10-18 14:24:26 -04:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
|
|
export default {
|
|
schema: "./server/db/schema.ts",
|
|
out: "./drizzle",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL as string,
|
|
},
|
|
} satisfies Config;
|