Files
goodgo-platform/prisma/prisma.config.ts
Ho Ngoc Hai 1617921993 feat(payments): add Order & Escrow repository tests, prisma config, docs
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>
2026-04-13 00:36:49 +07:00

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',
},
});