Todo backend with python

    $ sh build.sh
    $ sh start.sh

    $ sh build_dev.sh
    $ sh bind_dev.sh
    $ sh start_dev.sh

Create Todo

    curl --location --request POST 'http://127.0.0.1:3000/todo' 
    --header 'Content-Type: application/json' 
    --data-raw '{
        "id": null,
        "title": "{description}",
        "description": "{description}"
    }'

Get all Todos

    curl --location --request GET 'http://127.0.0.1:3000/todo'

Get Todo by Id