- Clone this app from Github git@github.com:krishangoel21/trello-react.git
- Install Yarn
- Open your termial and hint command "Yarn start"
we need CURD operation for Board, List, Task
- GET /boards → returns a list of all board that related to company or user
- GET /all-list → returns a list of all status for the particular board
- GET /tasks → returns a list of tasks related to particular board
- POST /board → for create a new board
- DELETE /board → for delete a particular board
- UPDATE /board → for update a single board (name, info)
- POST /list → for create new list
- DELETE /list → for delete list
- UPDATE /list → for update list
- POST /task → for create new task
- DELETE /task → for delete task
- UPDATE/task → for update task
- GET/users → need all user those are related to that particular board
- UPDATE/user → change user from particular task
- DELETE/user → delete user for particular board