/discovery-app-react

A React.js based app

Primary LanguageJavaScript

About

Experiments with APIs and react. Nothing to see here. Move along please

Running discovery-app locally

Prepare

clone the app and cd to the directory

git clone https://github.com/irishdan/discovery-app-react

Install dependencies via npm

npm install

Install dependencies via yarn

yarn

Start the app

npm start

Open http://0.0.0.0:9020 in your browser to see the app.

Yarn users alternatively can use yarn start to start the app.

Using Docker

clone the app and cd to the directory

git clone https://github.com/irishdan/discovery-app-react

Build the docker image

docker build -t discovery-app .

Run the docker image

docker run -it --rm -p 9020:9020 discovery-app

Open http://0.0.0.0:9020 in your browser to see the app