We are using yarn 2 because we make use of the workspace feature of yarn 2 for this monorepo.
This repository has submodules, so you need to pulling the latest submodules, too:
git clone [email protected]:ArtCodeStudio/test-center.git
cd test-center
git submodule update --init --recursive
If you have already pulled the repository with his submodules, you can just run:
git pull --recurse-submodules
The Prisma integration is based on this yarn berry example and the guide in the Nest.js documentation.
You can generate the prisma schema in the root of this project by running
yarn prisma generate
yarn prisma migrate dev --name init