An in memory todo list built with Flask, with a small CRUD.
PS: This project was built for studying purposes only.
1 - Clone the project to your computer
git clone git@github.com/flowck/todo-py.git
2 - Navigate to the folder and install the dependencies
cd path/to/todo-py
pip3 install
3 - Run it
export FLASK_APP=app.py
flask run --reload
4 - Open http://localhost:5000
- Create tasks
- Read tasks
- Delete tasks
- Update tasks
- Check task as complete
- Check task as uncomplete
- Add a database
- Improve form validation
- Add user sign up
- Add user auth
Under MIT 2018 - Firmino Changani