mirror of
https://gitea.gofwd.group/sean/gunbuilder-next-tailwind.git
synced 2025-12-06 02:56:45 -05:00
10 lines
233 B
TypeScript
10 lines
233 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
|
|
export default {
|
|
schema: "./src/db/schema.ts",
|
|
out: "./drizzle/migrations",
|
|
driver: "pg",
|
|
dbCredentials: {
|
|
connectionString: process.env.DATABASE_URL!,
|
|
},
|
|
} satisfies Config;
|