https://github.com/surzia/simple-fine-todo
A simple todo app built by Flask
https://github.com/surzia/simple-fine-todo
flask python sqlite todo
Last synced: about 2 months ago
JSON representation
A simple todo app built by Flask
- Host: GitHub
- URL: https://github.com/surzia/simple-fine-todo
- Owner: surzia
- License: mit
- Created: 2021-07-12T11:55:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-14T15:55:17.000Z (almost 5 years ago)
- Last Synced: 2025-08-22T16:51:45.528Z (10 months ago)
- Topics: flask, python, sqlite, todo
- Language: HTML
- Homepage: https://simple-fine-todo.herokuapp.com/
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# todo


This is a simple and fine-look todo application

## Deployment
:rocket: [heroku](https://simple-fine-todo.herokuapp.com/)
## Run it on your :computer:
clone it
```shell script
git clone https://github.com/surzia/simple-fine-todo.git
```
```shell script
cd simple-fine-todo
```
install dependencies
```shell script
pip install -r requirements.txt
```
run as web application
```shell script
web: gunicorn app:app
```
or you can start it as flask app
```shell script
flask run
```
## Reference
- [Simple and Fine-look Todo App - From juejin](https://juejin.cn/post/6984787198499356680)
- [Simple to-do List - From Codepen](https://codepen.io/jaballadares/pen/Hwebq)