Scrum-Task-Management-with-ReactJS-Express-Server
Scrum-Task-Management-with-ReactJS-Express-Server copied to clipboard
Scrum masters can create tasks for employees in this project.
Scrum & Agile Task Management
Scrum Masters can create tasks for employees in this project.
This project powered by React.JS and Express.
Get Started
Open command line and apply that steps:
1. Step
git clone https://github.com/mreorhan/Scrum-Task-Management-with-ReactJS-Express-Server/ scrumtaskmanagement
2. Step
cd scrumtaskmanagement
npm install
npm start
3. Step
You can start working on any explorer window.
HTTP Request
http://localhost:5000/tasks
| Route | HTTP Verb | POST body | Description |
|---|---|---|---|
| /tasks | GET |
Empty | List all tasks. |
| /tasks | POST |
{'title':'task title', 'content':'task content', status:1, date:Date.now, color:SpecialField, dueDate:Date, createdBy:ObjectId, contributors: Object.Id } | Create a new task. |
| /tasks/update/:id | PUT |
{'title':'task title', 'content':'task content', status:1, date:Date.now, color:SpecialField, dueDate:Date, createdBy:ObjectId, contributors: Object.Id } | Update task by id. |
| /tasks/delete/:id | DELETE |
Empty | Delete task by id. |
| /users | GET |
Empty | List all users. |
| /users | POST |
{'username':'emreorhan', 'name':'Emre', lastName:'Orhan', createdBy:ObjectId, profilePhoto:'emre.jpg' } | Create a new user. |
| /story | GET |
Empty | List all projects. |
Contributing
See Contributors.