git clone https://github.com/starzel/flask.git
cd flask
# Create and enable virtualenv:
python3 -m venv .
source bin/activate
# install
pip install -r requirements.txtenv FLASK_APP=demo.py flask runRun in debug-mode
env FLASK_APP=demo.py FLASK_ENV=development flask runOpen in http://localhost:5000