import { PrismaClient } from "@prisma/client"; import { syncRecipeSources } from "../src/db/recipe-source-sync.js"; import { seedReferenceData } from "../src/db/reference-seed-data.js"; // Standalone CLI entry point (not `src/db/prisma.ts` — that module pulls in // the rest of the app's config/env plumbing this doesn't need), run via // `prisma db seed` (see the `prisma.seed` entry in package.json) — either // directly (`pnpm --filter api prisma:seed`) or automatically after // `prisma migrate reset`. The actual data/logic lives in // `src/db/reference-seed-data.ts`, shared with `test-support/reset-db.ts`. const prisma = new PrismaClient(); seedReferenceData(prisma) .then(() => syncRecipeSources(prisma)) .then(() => prisma.$disconnect()) .catch(async (err) => { console.error(err); await prisma.$disconnect(); process.exit(1); });