Skip to content

Latest commit

 

History

History
56 lines (37 loc) · 1.54 KB

README.md

File metadata and controls

56 lines (37 loc) · 1.54 KB

TaskBuddy

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.

Features

  • 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

Tools & Tech Used

Node.js Express MongoDB React JWT

Usage

  • Create a MongoDB database and obtain your MongoDB URI - MongoDB Atlas

Env Variables

Add the environment variables

DATABASE = your mongodb uri
SECRET_KEY = your jwt secret key

Install Dependencies (frontend & backend)

npm install (in frontend & backend directory)

Run


# Run frontend (:3000)
npm start

# Run backend (:5000)
npm start