Prototype user interface for the IHR Costing Tool
This app can be run in development mode with Docker.
Build image
make build-imageStart the services
make docker-startWebapp is at localhost:3000. Express server is at localhost:9500. Mongo db can be accessed through port 27017
Stop all services
make docker-endInstall yarn globally.
npm install -g yarnInstall the package dependencies.
yarnRun in development mode.
yarn startOpen http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will see the build errors and lint warnings in the console.
Run the test watcher in interactive mode.
yarn testBuild the app for production.
yarn build