603ffbc426
* docs: add supabase guide * feat: add support for external connection poolers * chore: use .env symlink in database package * chore: remove database .env.example * docs: finish supabase pooling section * docs: fix small typo * docs: replace prisma with app wording * docs: fix up supabase pooling section * fix: deleted too much in contributing docs * docs: change pooling heading * docs: reduce linux shaming * docs: include direct connection url in fly.io
21 lines
469 B
TypeScript
21 lines
469 B
TypeScript
import { PrismaClient } from "@trigger.dev/database";
|
|
|
|
type SetDBCallback = (prisma: PrismaClient) => Promise<void>;
|
|
|
|
export const setDB = async (cb: SetDBCallback) => {
|
|
const { DATABASE_URL } = process.env;
|
|
|
|
const prisma = new PrismaClient({
|
|
datasources: {
|
|
db: {
|
|
url: DATABASE_URL,
|
|
// We can't set directUrl here, and we don't have to
|
|
},
|
|
},
|
|
});
|
|
|
|
await prisma.$connect();
|
|
await cb(prisma);
|
|
await prisma.$disconnect();
|
|
};
|