Backend repository for Gistalk project.
https://api.gistalk.gistory.me
https://api.stg.gistalk.gistory.me
Entity Relation Diagram is made by dbdocs
It is available here
# install all package
$ npm install
Since this application uses the prisma client, to run this application, prisma client must be generated before running application.
# generate prisma client
$ npx prisma generate
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# production mode with database change
$ npm run start:deploy
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov