11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
|
|
import type { Config } from 'drizzle-kit'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
schema: './lib/db/schema.ts',
|
||
|
|
out: './drizzle',
|
||
|
|
dialect: 'postgresql',
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL ?? 'postgres://wc:wc@localhost:5432/worldcup',
|
||
|
|
},
|
||
|
|
} satisfies Config
|