A Restful API that displays current ZEL exchange Rates
Requires node version 6.0 and above
Install npm dependencies with command:
npm install
Start the service with command:
npm start
After the service has been started, you should be able to browse to it on port 3333. Example: http://localhost:3333/rates
To build the docker image run with command:
docker build -t zel/zel-rates-api .
Then run the docker image with command:
docker run -d --restart always -p 3333:3333 --name zel-rates-api zel/zel-rates-api