Spaces:
Sleeping
Sleeping
File size: 458 Bytes
4c2a557 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import type { Config } from "drizzle-kit";
export default {
schema: "./lib/db.ts",
out: "./drizzle",
driver: "pg",
dbCredentials: process.env.POSTGRES_URL
? { connectionString: process.env.POSTGRES_URL }
: {
host: process.env.POSTGRES_HOST || "",
user: process.env.POSTGRES_USER || "",
password: process.env.POSTGRES_PASSWORD || "",
database: process.env.POSTGRES_DATABASE || "",
},
} satisfies Config;
|