This repository contains the react application frontend for the Rovercode web application.
nodejs LTS version v8.x is required. Newer versions may have issues.
yarn is required for installing dependencies. Instructions for installing yarn can be found here.
To install the production dependencies (for just running the application), run:
yarn install --pure-lockfile --productionTo install development dependencies (for running tests, lint, etc), run:
yarn install --pure-lockfileNOTE: The application running the development webserver requires the rovercode api to be running at http://localhost:8000
To run the development web server using a locally running API instance, run:
yarn start:localTo run the development web server using the API instance on alpha.rovercode.com, run:
yarn start:alphaTo run unit tests, run:
yarn testTo run the linter, run:
yarn lint