Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greyli/todoism
A to-do list application build with Flask, featured with SPA, i18n support and Web APIs.
https://github.com/greyli/todoism
Last synced: 5 days ago
JSON representation
A to-do list application build with Flask, featured with SPA, i18n support and Web APIs.
- Host: GitHub
- URL: https://github.com/greyli/todoism
- Owner: greyli
- License: mit
- Created: 2018-08-03T09:51:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:11:43.000Z (about 2 years ago)
- Last Synced: 2024-12-08T14:35:04.864Z (14 days ago)
- Language: Python
- Homepage: http://todoism.helloflask.com
- Size: 556 KB
- Stars: 151
- Watchers: 8
- Forks: 220
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Todoism
*We are todoist, we use todoism.*
> Example application for *[Python Web Development with Flask](https://helloflask.com/en/book/1)* (《[Flask Web 开发实战](https://helloflask.com/book/1)》).
Demo: http://todoism.helloflask.com
![Screenshot](https://helloflask.com/screenshots/todoism.png)
## Installation
clone:
```
$ git clone https://github.com/greyli/todoism.git
$ cd todoism
```
create & activate virtual env then install dependency:with venv/virtualenv + pip:
```
$ python -m venv env # use `virtualenv env` for Python2, use `python3 ...` for Python3 on Linux & macOS
$ source env/bin/activate # use `env\Scripts\activate` on Windows
$ pip install -r requirements.txt
```
or with Pipenv:
```
$ pipenv install --dev
$ pipenv shell
```
init database then run:
```
$ flask initdb
$ flask translate compile
$ flask run
* Running on http://127.0.0.1:5000/
```## License
This project is licensed under the MIT License (see the
[LICENSE](LICENSE) file for details).