Tho set up this project, you need to have the following dependencies installed:
The client side or frontend is built using React. Follow the steps below to get the client up and running.
- In the root directory,
cd frontend
npm install
// Only required first time you run the projectnpm start
The server or backend code uses Node.js. Follow the steps below to get the server up and running.
- In the root directory,
cd backend
- Rename
.env.template
to.env
and add the uncommented parameters likeMONGO_URI
which you will get from MongoDB's website andJWT_SECRET
. npm install
// Only required first time you run the projectnpm run start