mirror of
https://github.com/fergalmoran/kidarr-server.git
synced 2025-12-22 09:17:51 +00:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import type { Config } from "drizzle-kit";
|
|
import { env } from "@/env.mjs";
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema",
|
|
out: "./src/server/db/migrations",
|
|
driver: "pg",
|
|
dbCredentials: {
|
|
connectionString: env.DATABASE_URL,
|
|
}
|
|
} satisfies Config; |