Name:Kalpana
Company:CODTECH IT SOLUTIONS
ID:CT6WDS73
Domain:Web Development
Duration:May to June 2024
Mentor:GOUNI SRAVANI
Overview of the Project
Project:To-do-list
The objective of this project is to create a simple and intuitive to-do list application that helps users manage their tasks efficiently. This application allows users to add, edit, delete, and mark tasks as completed, providing a streamlined way to organize daily activities and enhance productivity.
- Add new tasks
- Edit existing tasks
- Delete tasks
- Mark tasks as completed
- Filter tasks by status (all, completed, pending)
- User-friendly interface
Run the following command to clone the repository
git clone https://github.com/Kalpna03/CODTECH-Task1.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
GMAIL_USERNAME=your gmail address
GMAIL_PASSWORD=password created inside 'App Password' section under google accounts setting
PORT=8000
JWT_SECRET=a random secret key eg. thisisasecretkey
Go to backend and frontend directory and start the server
cd backend
nodemon server
cd frontend
npm start