Skip to content

mreorhan/Scrum-Task-Management-with-ReactJS-Express-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scrum & Agile Task Management

Version Version

Scrum Masters can create tasks for employees in this project.

This project powered by React.JS and Express.

Screen Shot 2022-07-22 at 20 48 22

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.