mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-20 20:35:43 +02:00
12 lines
327 B
TypeScript
12 lines
327 B
TypeScript
import { defineConfig } from "drizzle-kit";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
dialect: "postgresql",
|
|
schema: path.join("server", "db", "pg", "schema.ts"),
|
|
out: path.join("server", "migrations"),
|
|
verbose: true,
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL as string
|
|
}
|
|
});
|