import { drizzle } from 'drizzle-orm/postgres-js'; import postgres from 'postgres'; import * as schema from './schema.js'; const connectionString = process.env.POSTGRES_URL ?? 'postgresql://gooseek:gooseek@localhost:5432/gooseek'; const client = postgres(connectionString); export const db = drizzle(client, { schema });