11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
import { defineConfig } from "drizzle-kit"
|
|
import {secrets} from "./src/utils/secrets";
|
|
|
|
export default defineConfig({
|
|
dialect: "postgresql",
|
|
schema: "./db/schema",
|
|
out: "./db/migrations",
|
|
dbCredentials: {
|
|
url: secrets.DATABASE_URL || "postgres://postgres:wJw7aNpEBJdcxgoct6GXNpvY4Cn6ECqu@fedeo-db-001.vpn.internal:5432/fedeo",
|
|
},
|
|
}) |