Express HTTP endpoints
GET /endorses/:address
$ npm install# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# Build the service
npm run build# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:covCreate .env file in the directory following the example and run
docker-compose up
Optionally you can specify custom .env file and run using:
docker-compose --env-file <path-to-env-file> up