docker-composer up -d
swagger: http://localhost:8080/doc/swagger.json
curl -v -H "Content-Type: application/json" localhost:8080/api/todos
curl -v -H "Content-Type: application/json" localhost:8080/api/todos/:id
curl -d '{ "name": "test", "parentid": 0 }' -H 'Content-Type: application/json' localhost:8080/api/todos
curl -d '{ "name": "test", "parentid": 0 }' -H 'Content-Type: application/json' -X PUT localhost:8080/api/todos/:id
curl -X DELETE localhost:8080/api/todos/:id