Essentially, there are 2 NodeJS projects in this repository. Treat each as its own, with its own commands and its own file structures.
git clone [email protected]:PSUCoders/tutoring-hub.git && cd tutoring-hub
cd front-end && npm install
cd ../back-end && npm install
git clone [email protected]:PSUCoders/tutoring-hub.git | cd tutoring-hub/
cd front-end/ | npm install
cd ../back-end/ | npm install
This project uses a RESTful NodeJS backend with a ReactJS frontend. To run the project, you must run one instance of the backend and another instance of the frontend.
(From the root folder)
cd back-end && npm start
(In another instance, from the root folder)
cd front-end && npm start
(From the root folder)
cd back-end/ | npm start
(In another instance, from the root folder)
cd front-end/ | npm start