Skip to content

krishangoel21-zz/trello-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Step to intall this app
  1. Clone this app from Github git@github.com:krishangoel21/trello-react.git
  2. Install Yarn
  3. Open your termial and hint command "Yarn start"

Contract that we need from backend

we need CURD operation for Board, List, Task

  1. GET /boards → returns a list of all board that related to company or user
  2. GET /all-list → returns a list of all status for the particular board
  3. GET /tasks → returns a list of tasks related to particular board
  4. POST /board → for create a new board
  5. DELETE /board → for delete a particular board
  6. UPDATE /board → for update a single board (name, info)
  7. POST /list → for create new list
  8. DELETE /list → for delete list
  9. UPDATE /list → for update list
  10. POST /task → for create new task
  11. DELETE /task → for delete task
  12. UPDATE/task → for update task
  13. GET/users → need all user those are related to that particular board
  14. UPDATE/user → change user from particular task
  15. DELETE/user → delete user for particular board