/HomeHospital

Home Hospitals group repo

Primary LanguageHTML

HomeHospital

Home Hospital Wiki

Run Application with Docker

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 Instructions


# 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/

Run Application locally

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/