christian
17c0c0e853
Some checks failed
Vercel Production Deployment / Deploy-Production (push) Failing after 43s
12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
import { type Config } from "drizzle-kit";
|
|
import "./src/server/db/envConfig"
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema.ts",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: process.env.POSTGRES_URL!,
|
|
},
|
|
tablesFilter: ["wine-shop_*"],
|
|
} satisfies Config;
|