mirror of
https://github.com/ArthurDanjou/arthome.git
synced 2026-01-14 12:14:33 +01:00
14 lines
290 B
TypeScript
14 lines
290 B
TypeScript
import type { Config } from 'drizzle-kit'
|
|
import { config } from 'dotenv'
|
|
|
|
config()
|
|
|
|
export default {
|
|
dialect: 'postgresql',
|
|
schema: './server/database/schema.ts',
|
|
out: './server/database/migrations',
|
|
dbCredentials: {
|
|
url: process.env.NUXT_POSTGRES_URL,
|
|
},
|
|
} satisfies Config
|