Skip to content

Latest commit

 

History

History
 
 

app

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Project Set Up on Local Device

Prerequisites

Tho set up this project, you need to have the following dependencies installed:

Client set up

The client side or frontend is built using React. Follow the steps below to get the client up and running.

  1. In the root directory, cd frontend
  2. npm install // Only required first time you run the project
  3. npm start

Server set up

The server or backend code uses Node.js. Follow the steps below to get the server up and running.

  1. In the root directory, cd backend
  2. Rename .env.template to .env and add the uncommented parameters like MONGO_URI which you will get from MongoDB's website and JWT_SECRET.
  3. npm install // Only required first time you run the project
  4. npm run start