Run the following command to clone the repository
git clone https://github.com/vindhujabk/todo-app.git
Go to frontend and backend directory to install packages
cd frontend
npm install
cd backend
npm install
Create .env file inside backend directory and copy the following code
MONGO_URI=Your mongodb URI
PORT=8000
JWT_SECRET=a random secret key eg. arandomsecretkey
Create .env file inside frontend directory and copy the following code
REACT_APP_GITHUB_TOKEN=github personal access token
Go to backend and frontend directory and start the server
cd backend
nodemon index
cd frontend
npm start