# sayhello **Repository Path**: pangzimu/sayhello ## Basic Information - **Project Name**: sayhello - **Description**: A simple message board application build with Flask. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-13 - **Last Updated**: 2021-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SayHello *Say hello to the world.* > Example application for *[Python Web Development with Flask](http://helloflask.com/en/book)* (《[Flask Web 开发实战](http://helloflask.com/book)》). Demo: http://sayhello.helloflask.com ![Screenshot](http://helloflask.com/screenshots/sayhello.png) ## 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).