This is a repository for test from uninow.
To run this codebase, following are needed:
First clone the repository using
$ git clone https://github.com/shaifulislamboby/uninow.git
Then setup MongoDB and Redis.
Edit the /config/development.json
or /config/production.json
to connection information for mongo and redis.
Refer to /config/default.json
for reference(default) configuration example.
Then install all dependencies using
$ npm install
Finally to start use one of the following
# start in development mode
$ npm run start:dev
# start in production mode
$ npm run start
If docker and docker-compose is available, to start the service run
# build the node image
$ docker-compose build
# boot
$ docker-compose up
# or boot in daemon mode
$docker-compose up -d
(coming soon)