Run the following command to run the application locally using docker. If using docker to run the application, you do not need to worry about the install instructions listed below. Docker takes care of packaging all of the dependencies.
docker-compose up -d --build
# install backend dependencies
npm i --prefix ./HomeHospital-Backend/
# install frontend dependencies
npm i --prefix ./HomeHospital-Frontend/hh-front/
# install web scraper dependencies
npm i --prefix ./WebScraper/
To get the application running locally, you need to run each one of these commands in a different command shell. Start them in order, and then your web browser will open with the application.
# start backend
npm start --prefix ./HomeHospital-Backend/
# start Webscrapper
npm start --prefix ./WebScraper/
# start frontend
npm start --prefix ./HomeHospital-Frontend/hh-front/