Add 26 unit tests for PrismaOrderRepository and PrismaEscrowRepository covering CRUD operations, pagination, domain mapping (bigint → Money), idempotency key lookup, and escrow dispute workflow fields. Update prisma.config.ts with dotenv import and seed command for Prisma 7. Add architecture summary and codebase overview documentation files. Co-Authored-By: Paperclip <noreply@paperclip.ing>
23 lines
692 B
TypeScript
23 lines
692 B
TypeScript
import path from 'node:path';
|
|
import { defineConfig } from 'prisma/config';
|
|
|
|
// Use DATABASE_URL_DIRECT (bypasses PgBouncer) for migrations/introspection
|
|
// when available; fall back to DATABASE_URL for local dev without PgBouncer.
|
|
import 'dotenv/config';
|
|
|
|
const databaseUrl =
|
|
process.env.DATABASE_URL_DIRECT || process.env.DATABASE_URL!;
|
|
|
|
export default defineConfig({
|
|
earlyAccess: true,
|
|
schema: path.join(__dirname, 'schema.prisma'),
|
|
// Prisma 7 requires datasource.url for db push, migrate deploy, etc.
|
|
datasource: {
|
|
url: databaseUrl,
|
|
},
|
|
// Seed command — Prisma 7 reads this from config instead of package.json
|
|
migrations: {
|
|
seed: 'tsx prisma/seed.ts',
|
|
},
|
|
});
|