mirror of
https://github.com/fergalmoran/mixyboos.git
synced 2025-12-22 09:41:39 +00:00
13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
import * as dotenv from "dotenv";
|
|
dotenv?.config();
|
|
|
|
export default {
|
|
schema: "./src/schema.ts",
|
|
out: "./drizzle",
|
|
driver: "pg",
|
|
dbCredentials: {
|
|
connectionString: process.env.DATABASE_URL as string,
|
|
},
|
|
} satisfies Config;
|