Jonas Schultheiss
02/24/2022, 7:48 AMJared Fraser
02/24/2022, 7:59 AMapps/a
apps/b
libs/prisma-schema/ (all our db schema here, this might not be required)
libs/nest-prisma (our generic nestjs module for instaniating prisma)
our apps import from a private package for types
import type { User } from '@acmecorp/prisma'
and can import the service if needed
import { PrismaService } from '@acmecorp/nest-prisma'
Jared Fraser
02/24/2022, 8:02 AMJonas Schultheiss
02/24/2022, 8:10 AMTyler Bell
02/24/2022, 1:05 PM