mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import * as dotenv from "dotenv";
|
|
import type { Config } from "drizzle-kit";
|
|
|
|
dotenv.config({ path: "../../.env" });
|
|
|
|
export default {
|
|
schema: "./schema",
|
|
driver: "better-sqlite",
|
|
dbCredentials: { url: process.env.DB_URL! },
|
|
} satisfies Config;
|