Skip to content

Running the Demo

Calvin Rodo edited this page Mar 22, 2019 · 2 revisions

Local Machine

To run this demo you must have the latest LTS version of NodeJS installed.

To install all dependencies

npm install

To Run the application in watch mode:

npm run serve

Then navigate to http://localhost:8080

Docker

To run this demo in a docker container you need to run the following:

Docker requires a 2 step approach to being run first you need to build the image and then you need to run the image.

To build the image run

docker build . -t aia-eia-js:latest

To run the image run

docker run --rm -p 8080:80 aia-eia-js:latest

Then navigate to http://localhost:8080

Clone this wiki locally