After cloning the repository, from the root directory of the project folder run the following command to install npm dependencies
npm install
Run the following command to run the application in development mode. This will start the application in development mode at localhost:3000
npm run start
Run the following command to generate the build file which will be present in ./build directory
npm run build
Specify the base url for backend endpoint in .env file at the root directory of this repo
REACT_APP_API_ENDPOINT=http://127.0.0.1:5000