mirror of
https://github.com/ajnart/homarr.git
synced 2025-10-29 09:36:14 +01:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
|
|
import 'dotenv';
|
||
|
|
import { type Config } from 'drizzle-kit';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
schema: './src/server/db/schema.ts',
|
||
|
|
driver: 'better-sqlite',
|
||
|
|
out: './drizzle',
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL!,
|
||
|
|
},
|
||
|
|
} satisfies Config;
|