import { drizzle } from "drizzle-orm/postgres-js"; import postgres from "postgres"; import * as schema from "./schema"; const connectionString = process.env["DATABASE_URL"] ?? "postgresql://epicure:epicure@localhost:5432/epicure"; const client = postgres(connectionString, { max: 10 }); export const db = drizzle(client, { schema }); export type Db = typeof db;