Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 614 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 614 Bytes

zel-rates-api

A Restful API that displays current ZEL exchange Rates

Requirements

Requires node version 6.0 and above

Installation

Install npm dependencies with command:

npm install

Usage

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

Docker

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