A simple todo-list web application which provides the following functionality:
• A list of todos
• Create a new todo item
• Mark a todo item as done or undone
• Edit a todo item
• Delete a todo item
• Mark everything as completed
The project makes use of Python3, Flask, SQLite, Bootstrap and JQuery.
git clone https://github.com/booleancl/Flask-ToDo-List
cd Flask-ToDo-List
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
FLASK_APP=app.py
flask run
flask run --host=0.0.0.0
Navigate to: http://localhost:5000/
Stop the server then run the following:
flask shell
db.create_all()
exit()
flask
Zac Clery
This project is licensed under the MIT License