Skip to content

biancarosa/todo-list

Repository files navigation

todo-list

This is yet another todo-list app.

The application relies on the app folder, being the main.py its entrypoint.

It aims to use the latest version of Python, Flask and Gunicorn. Feel free to make a pull request if it's not.

Running the app

Docker

Docker and Docker Compose make things easy!

docker-compose up
# or if you want to run detached
docker-compose up -d

Natively

There is a comprehensive Makefile in the project that can be used.

# install dependencies
make
# runs the app
make run