app.cli command flask run code example
Example: run flask app from command line
# For bash do this:
set FLASK_APP=<app_name>
# For powershell do this:
$env FLASK_APP=<app_name>
# Run it like this
flask run
# For bash do this:
set FLASK_APP=<app_name>
# For powershell do this:
$env FLASK_APP=<app_name>
# Run it like this
flask run