Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/whouishere/todo-flask
todo web app
https://github.com/whouishere/todo-flask
flask python todo todoapp webapp
Last synced: 16 days ago
JSON representation
todo web app
- Host: GitHub
- URL: https://github.com/whouishere/todo-flask
- Owner: whouishere
- License: gpl-3.0
- Created: 2022-09-29T06:11:04.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-04T05:47:19.000Z (almost 2 years ago)
- Last Synced: 2023-07-18T03:27:09.890Z (over 1 year ago)
- Topics: flask, python, todo, todoapp, webapp
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# To Do
To Do web app project made with Flask.## Why?
For pure fun and practice! I very much know that we don't need another useless To Do project.It's still very ugly and broken, with additional features planned.
## To Do (pun intended):
- Edit and delete task button
- Find items through its UUIDs
- Different levels of priority, with different colors
- Different user profiles that can have different lists
- Settings page where you can change appearance and stuff (dark mode?) and keep it as cookies or for the user account
- Store user data as JSON## Run
First create a virtual environment, and activate it.
```
python -m venv venv
source venv/bin/activate
```Now install project dependencies.
```
pip install -r requirements.txt
```And finally run the `run.py` script!
```
./run.py
```
Check out its extra options with `./run.py --help`.