Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 561 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 561 Bytes

results-viewer

To run standalone

  1. Copy .env.example to .env, and edit with your properties.
  2. Making sure npm is installed, run
npm install

and

npm start
  1. The application runs by default here.

Running Docker standalone

  1. Build image
docker build -t results-viewer-app .
  1. Run the image
docker run -it -v ${PWD}:/usr/src/app -v /usr/src/app/node_modules -p 8200:8200 --rm results-viewer-app
  1. The application runs by default here.