mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-16 16:44:54 -06:00
15 lines
350 B
TypeScript
15 lines
350 B
TypeScript
import { defineConfig } from "drizzle-kit";
|
|
import path from "path";
|
|
|
|
const schema = [path.join("server", "db", "pg", "schema")];
|
|
|
|
export default defineConfig({
|
|
dialect: "postgresql",
|
|
schema: schema,
|
|
out: path.join("server", "migrations"),
|
|
verbose: true,
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL as string
|
|
}
|
|
});
|