NestJS codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld API spec.
The project uses GRASP and SOLID patterns. There is an emphasis on the division of responsibility, layered architecture
The database for the project is used in a docker container, so you will need tools to work with the docker
git clone https://github.com/mr-scrpt/medium-nest-prisma.git
cd medium-nest-prisma
$ yarn install
$ docker-compose up -d
$ yarn migrate:dev
$ yarn seed:dev
# development
$ yarn start:dev
# prod mode
$ yarn run start:prod