This toy web application is created specifically for the iximiuz Labs' Dagger course.
To start the application using Docker Compose, run the following command:
make upThen create a few TODO items:
curl -X POST -d '{"task": "Finish the course"}' http://localhost:8080/todos
curl -X POST -d '{"task": "Nail the sales!!!"}' http://localhost:8080/todosRetrieve the list of all the tasks:
curl -X GET http://localhost:8080/todosDelete a task:
curl -X DELETE http://localhost:8080/todos/{id}Run unit tests:
make testRun end-to-end tests (requires make up to be running):
make test-e2eCheck the Makefile for all available commands.