import { defineConfig } from 'drizzle-kit'; export default defineConfig({ schema: './src/database/schema.ts', out: './migrations', dialect: 'postgresql', dbCredentials: { // PGLite will be initialized in code url: process.env.DATABASE_URL || 'postgresql://localhost/events', }, });