aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/lib/server/db/index.ts
blob: e4773885d23bb4f1ce06d1c680ddb7e43d738e3b (plain) (blame)
1
2
3
4
5
6
import { drizzle } from 'drizzle-orm/node-postgres';
import { env } from '$env/dynamic/private';

if (!env.DATABASE_URL) throw new Error('DATABASE_URL is not set');

export const db = drizzle(env.DATABASE_URL);