11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
import { defineConfig } from "drizzle-kit";
|
|||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
schema: "./src/shared/database/schema.ts",
|
||
|
|
out: "./drizzle/migrations",
|
||
|
|
dialect: "postgresql",
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL || "postgresql://postgres:postgres@localhost:5432/bete",
|
||
|
|
},
|
||
|
|
});
|