ยฉ 2026 Hedgehog Software, LLC
DATABASE_URL="DATABASE_URL=postgresql://postgres:@localhost:5432/postgres?schema=test"
import { PrismaClient } from "@prisma/client/edge"; export const db = new PrismaClient({ datasources: { db: { url: 'file:../src/dev.vars', }, }, })
generator client { provider = "prisma-client-js" engineType = "binary" } datasource db { provider = "postgresql" url = env("DATABASE_URL") }