mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-06-27 14:25:42 -04:00
12 lines
250 B
TypeScript
12 lines
250 B
TypeScript
import "dotenv/config";
|
|
import { defineConfig } from "drizzle-kit";
|
|
|
|
export default defineConfig({
|
|
schema: "./lib/db/schema.ts",
|
|
out: "./lib/db/migrations",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL!,
|
|
},
|
|
});
|