make -f ./scripts/Makefile buildmake -f ./scripts/Makefile runmake -f ./scripts/Makefile cleandocker build -t api-service -f ./.docker/Dockerfile .docker run -p 8080:8080 api-servicerequests:
curl -X POST \
http://localhost:8083/api/v1/task \
-H 'Content-Type: application/json' \
-d '{"name": "Новая задача", "difficulty": 1}'
curl -X GET \
http://localhost:8083/api/v1/task/123
correct difficulty [0, 10]