mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
14 lines
324 B
TypeScript
14 lines
324 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
|
|
console.log("> Generating PG Schema:", process.env.DATABASE_URL);
|
|
export default {
|
|
schema: "./server/db/schema/index.ts",
|
|
driver: "pg",
|
|
dbCredentials: {
|
|
connectionString: process.env.DATABASE_URL || "",
|
|
},
|
|
verbose: true,
|
|
strict: true,
|
|
out: "drizzle",
|
|
} satisfies Config;
|