Heroku live Demo here
There are server and clinet folders as follows:
Note: If you are getting set up for the first time, please read the readmes in the client and server folders! You'll need to set up MongoDB to get the app working properly.
-
In the root directory of the project, run
yarn install
to install all the dependencies. -
In one of those windows/tabs, navigate to the
client
directory and runyarn start
. It can be two separate commands or one command joined by&&
.cd client/ && yarn start
-
In another one of your terminals, navigate to the
server
directory and runyarn server
cd server/ && yarn server
-
You should then see the frontend of the app by navigating to
http://localhost:3000/
in a web browser -
You can also ping the server directly at
http://localhost:8000/
, such ashttp://localhost:8000/patients
What is the MERN stack?
MERN stands for MongoDB, Express, React, Node which are the technologies used in this template.