Student project

Author: Danilo Gačević

Description

Simple REST API that implements user authentication along with CRUD operations for users activities.

Installation

  1. Install node packages.
    $ npm install
  2. Create .env file with all necessary fields. Check config.service.ts for help.

Documentation

Generate documentation

$ npm run doc

Documentation at page

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