- Introduction
- Features
- Demo
- Getting Started
- Prerequisites
- Installation
- Usage
- Folder Structure
- Technologies Used
- Contributing
- License
- Contact
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.
- Create and manage projects
- Assign tasks to team members
- Set deadlines for tasks
- Track the progress of tasks and projects
- User authentication and authorization
Check out the live demo of the Project Management Tool here.
Follow these instructions to set up the project locally.
Ensure you have the following installed:
- Node.js
- npm or yarn
- Clone the repository:
git clone https://github.com/sourabhsahu33/project-management-tool.git
cd project-management-tool
npm install
# or
yarn install
npm start
# or
yarn start
project-management-tool/
├── public/
│ ├── index.html
│ └── ...
├── src/
│ ├── components/
│ │ ├── Project.js
│ │ ├── Task.js
│ │ └── ...
│ ├── redux/
│ │ ├── actions/
│ │ ├── reducers/
│ │ └── store.js
│ ├── App.js
│ ├── index.js
│ └── ...
├── package.json
└── ...