https://github.com/artcodestudio/test-center
https://github.com/artcodestudio/test-center
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/artcodestudio/test-center
- Owner: ArtCodeStudio
- License: agpl-3.0
- Created: 2021-05-21T08:12:53.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-21T14:46:40.000Z (about 5 years ago)
- Last Synced: 2025-10-14T13:06:06.217Z (8 months ago)
- Language: TypeScript
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# test-center
## Workspaces
We are using yarn 2 because we make use of the workspace feature of yarn 2 for this monorepo.
## Clone
This repository has submodules, so you need to pulling the latest submodules, too:
```sh
git clone git@github.com: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:
```sh
git pull --recurse-submodules
```
## Prisma
The Prisma integration is based on [this yarn berry example](https://github.com/zachasme/prisma-examples/tree/latest/yarn-berry) and [the guide in the Nest.js documentation](https://docs.nestjs.com/recipes/prisma).
You can generate the prisma schema in the root of this project by running
```sh
yarn prisma generate
yarn prisma migrate dev --name init
```