Skip to content

Latest commit

 

History

History
86 lines (68 loc) · 1.81 KB

README.md

File metadata and controls

86 lines (68 loc) · 1.81 KB

Project Management Tool

Table of Contents

Introduction

The Project Management Tool is a web application designed to help users create and manage projects, assign tasks, set deadlines, and track progress. It provides an intuitive interface to ensure effective project management and team collaboration.

Features

  • Create and manage projects
  • Assign tasks to team members
  • Set deadlines for tasks
  • Track the progress of tasks and projects
  • User authentication and authorization

Demo

Check out the live demo of the Project Management Tool here.

Getting Started

Follow these instructions to set up the project locally.

Prerequisites

Ensure you have the following installed:

  • Node.js
  • npm or yarn

Installation

  1. Clone the repository:
git clone https://github.com/sourabhsahu33/project-management-tool.git
cd project-management-tool

npm install
# or
yarn install

Usage

npm start
# or
yarn start

Folder Structure

project-management-tool/
├── public/
│   ├── index.html
│   └── ...
├── src/
│   ├── components/
│   │   ├── Project.js
│   │   ├── Task.js
│   │   └── ...
│   ├── redux/
│   │   ├── actions/
│   │   ├── reducers/
│   │   └── store.js
│   ├── App.js
│   ├── index.js
│   └── ...
├── package.json
└── ...