flask app execute shell command code example
Example 1: flask how to run app
$ export FLASK_APP=hello.py
$ python -m flask run
* Running on http://127.0.0.1:5000/
Example 2: how to set and run flask app on terminal
> set FLASK_APP=hello
> flask run
Example 3: run flask app from script
# I am assuming that you have configured the app name as "app"
if __name__ == "__main__":
app.run()