TaskBuddy is a web application developed using MERN stack to streamline the task management process. It enables users to efficiently capture, organize, and track the tasks with ease.
- User Profile or dashboard
- User Authentication
- Task overview display
- CRUD operations
- Create new tasks
- Edit an existing task
- Change status of task as pending or completed
- Delete a task
- Display of all the tasks
- Create a MongoDB database and obtain your MongoDB URI - MongoDB Atlas
Add the environment variables
DATABASE = your mongodb uri
SECRET_KEY = your jwt secret key
npm install (in frontend & backend directory)
# Run frontend (:3000)
npm start
# Run backend (:5000)
npm start