Files
otto/drizzle.config.ts
2026-07-08 19:17:05 +02:00

13 lines
296 B
TypeScript

import { defineConfig } from 'drizzle-kit';
export default defineConfig({
schema: './lib/db/schema.ts',
out: './drizzle',
dialect: 'postgresql',
dbCredentials: {
url: process.env.DATABASE_URL || 'postgresql://otto:otto@localhost:5432/otto',
},
verbose: true,
strict: true,
});