13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
|
|
import type { Config } from 'drizzle-kit';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
schema: './src/schema.ts',
|
||
|
|
out: './drizzle',
|
||
|
|
dialect: 'postgresql',
|
||
|
|
dbCredentials: {
|
||
|
|
url: process.env.DATABASE_URL ?? 'postgresql://bmm:bmm@localhost:5432/bmm',
|
||
|
|
},
|
||
|
|
strict: true,
|
||
|
|
verbose: true,
|
||
|
|
} satisfies Config;
|