mirror of
https://github.com/catdevnull/preciazo.git
synced 2025-02-23 04:36:25 +00:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
|
import { defineConfig } from "drizzle-kit";
|
||
|
export default defineConfig({
|
||
|
dialect: "postgresql",
|
||
|
schema: "./db/schema.ts",
|
||
|
out: "./drizzle",
|
||
|
dbCredentials: {
|
||
|
url: process.env.DATABASE_URL!,
|
||
|
},
|
||
|
});
|