https://github.com/dhiraj9022/taskmanager
I'm creating Task manager API in spring boot using mysql database.
https://github.com/dhiraj9022/taskmanager
java junit5 mysql-database restful-webservices spring-boot spring-data-jpa
Last synced: 3 months ago
JSON representation
I'm creating Task manager API in spring boot using mysql database.
- Host: GitHub
- URL: https://github.com/dhiraj9022/taskmanager
- Owner: dhiraj9022
- Created: 2023-01-13T14:27:00.000Z (over 2 years ago)
- Default Branch: taskmanager
- Last Pushed: 2023-01-13T15:35:06.000Z (over 2 years ago)
- Last Synced: 2025-01-27T15:43:26.372Z (4 months ago)
- Topics: java, junit5, mysql-database, restful-webservices, spring-boot, spring-data-jpa
- Language: Java
- Homepage:
- Size: 91.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TaskManager
I have created Task manager API in spring boot using mysql database.
It is CRUD API basically create, update, Delete and Fetch board, list & items and also reorder the list and items.## Board API
POST /api/v1/boards

GET /api/v1/boards

UPDATE /api/v1/boards/{board_id}

# Lists API
POST /api/v1/lists

GET /api/v1/lists

UPDATE /api/v1/lists/{list_id}

REORDER LIST /api/v1/lists/reorder/{list_id}

# Item API
POST /api/v1/items

GET /api/v1/items

UPDATE /api/v1/items/{item_id}

REORDER ITEM /api/v1/items/reorder/{item_id}

DELETE /api/v1/items/{item_id}

Final dashboard
