12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
import "dotenv/config";
|
|
|
|
export default {
|
|
schema: "./app/_lib/schema.ts",
|
|
out: "./drizzle/generated",
|
|
driver: "pg",
|
|
breakpoints: true,
|
|
dbCredentials: {
|
|
connectionString: `${process.env.DATABASE_URL}?sslmode=verify-full`,
|
|
},
|
|
} satisfies Config;
|