import { drizzle } from 'drizzle-orm/postgres-js' import postgres from 'postgres' import * as schema from './schema' export * from './schema' const connectionString = process.env.DATABASE_URL! if (!connectionString) { throw new Error('Missing DATABASE_URL environment variable') } const postgresClient = postgres(connectionString, { prepare: false, idle_timeout: 20, connect_timeout: 30, max: 30, onnotice: () => {}, }) export const db = drizzle(postgresClient, { schema })