/cryptomath-api-articles

Articles microservice for storing and retrieving data on user articles

Primary LanguageTypeScript

cryptomath-api-articles

Articles microservice for storing and retrieving data on user articles.

Installation

$ npm install

Prisma migrate

# development
$ npm run migrate:dev

# production mode
$ npm run migrate:deploy

Generate prisma client

$ npm run prisma:generate

Seeding the database

$ npm run seed

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov