Web service for information from Hydra backend.
- run
npm install
to install application development dependencies - configure the application
- run
npm run dev
from the install directory
- run
src/lib/pre-install
to setupsrc/conf/config.json
MOUNT_PATH
is the base url for the application
From root of project, run:
docker build -t hydra-web-service:version .
-
Run the container using the tag
docker run -it -p 8000:8881 hydra-web-service:version
-
Connect to running container in browser
docker-machine env default \ | grep HOST \ | sed s/.*tcp/http/g \ | awk -F: '{print $1":"$2":8000"}' \ | xargs open