Microservice that allows to get Variamos users.
$ yarn install## Set environment variables
If you want to configure the database connection settings you can create a .env file or declare the following variables on your environment:
DATABASE_HOST=
DATABASE_PORT=
DATABASE_USERNAME=
DATABASE_PASSWORD=
DATABASE_NAME=
DATABASE_SCHEMA=# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:covCheck the postman collection stored on docs/postman to see all the API services this microservices exposes.