mirror of
https://github.com/ershisan99/www.git
synced 2025-12-17 21:09:22 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
import type { Config } from 'drizzle-kit'
|
|
|
|
import { env } from '@/env'
|
|
|
|
export default {
|
|
schema: './src/server/db/schema.ts',
|
|
dialect: 'postgresql',
|
|
dbCredentials: {
|
|
url: env.DATABASE_URL,
|
|
},
|
|
} satisfies Config
|