API for task management, create and read all the tasks.
./gradlew clean build./gradlew bootRunNOTE: You should have a mongo db instance running on your machine, the next option creates a mongo db instance for you.
docker-compose up -dYou will see the API working on http://localhost:8080
You can see the API documentation on http://localhost:8080/swagger-ui.html
curl --location 'localhost:8080/api/v1/task/create' \
--header 'Content-Type: application/json' \
--data '{
"title":"Task1",
"description":"the description",
"dueDate":"2024-06-26",
"tags":["a","b", "c"]
}'curl --location 'localhost:8080/api/v1/task/get-all'