mirror of
https://gitea.gofwd.group/sean/gunbuilder-next-tailwind.git
synced 2025-12-05 18:46:45 -05:00
15 lines
389 B
TypeScript
15 lines
389 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
|
|
export default {
|
|
schema: "./src/db/schema.ts",
|
|
out: "./drizzle/migrations",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
host: process.env.DB_HOST!,
|
|
port: Number(process.env.DB_PORT!),
|
|
user: process.env.DB_USER!,
|
|
password: process.env.DB_PASSWORD!,
|
|
database: process.env.DB_NAME!,
|
|
ssl: false,
|
|
},
|
|
} satisfies Config;
|