https://github.com/greyli/sayhello
A simple message board application build with Flask.
https://github.com/greyli/sayhello
Last synced: about 2 months ago
JSON representation
A simple message board application build with Flask.
- Host: GitHub
- URL: https://github.com/greyli/sayhello
- Owner: greyli
- License: mit
- Created: 2018-05-30T08:55:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-16T23:16:20.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T05:11:10.692Z (about 2 months ago)
- Language: JavaScript
- Homepage: http://sayhello.helloflask.com
- Size: 521 KB
- Stars: 256
- Watchers: 14
- Forks: 625
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SayHello
*Say hello to the world.*
> Example application for *[Python Web Development with Flask](https://helloflask.com/en/book/1)* (《[Flask Web 开发实战](https://helloflask.com/book/1)》).
Demo: http://sayhello.helloflask.com

## Installation
clone:
```
$ git clone https://github.com/greyli/sayhello.git
$ cd sayhello
```
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
```
generate fake data then run:
```
$ flask forge
$ 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).