An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# todo
![](https://img.shields.io/badge/python-3.6%2B-green)
![](https://img.shields.io/badge/license-MIT-orange)

This is a simple and fine-look todo application

![](./asserts/cover.png)

## 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)