https://github.com/helloflask/watchlist
Example application for Flask tutorial "Flask 入门教程".
https://github.com/helloflask/watchlist
flask python
Last synced: 11 months ago
JSON representation
Example application for Flask tutorial "Flask 入门教程".
- Host: GitHub
- URL: https://github.com/helloflask/watchlist
- Owner: helloflask
- License: mit
- Created: 2018-12-04T04:23:29.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T15:51:09.000Z (almost 2 years ago)
- Last Synced: 2025-06-04T03:41:29.053Z (11 months ago)
- Topics: flask, python
- Language: Python
- Homepage: http://watchlist.helloflask.com
- Size: 146 KB
- Stars: 280
- Watchers: 4
- Forks: 128
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Watchlist
Example application for flask tutorial "[Flask 入门教程](https://helloflask.com/book/3)".
Demo: http://watchlist.helloflask.com

## Installation
clone:
```
$ git clone https://github.com/helloflask/watchlist.git
$ cd watchlist
```
create & active virtual enviroment then install dependencies:
```
$ python3 -m venv env # use `python ...` on Windows
$ source env/bin/activate # use `env\Scripts\activate` on Windows
(env) $ pip install -r requirements.txt
```
generate fake data then run:
```
(env) $ flask forge
(env) $ 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).