This is the front-end for the Guidescan2 project. It relies on the REST API back-end to be running. That project is located here: guidescan-web.
The complete list of dependencies is here:
Configuration is done through environmental variables. Currently, the
only required environemnt variable is REACT_APP_REST_URL
, which
should point to the URL exposed by the
guidescan-web REST API.
Note that the environmental variables are set up at build time. Here is a complete list of environmental variables:
REACT_APP_REST_URL # The REST API base URL
Once the REST API back-end is up and running, execute the following sequence of commands to set up the front-end:
$ export REACT_APP_REST_URL=https://www.guidescan.com:8000
$ npm run-script build
$ serve build