Answers for "run flask in command line"

2

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
Posted by: Guest on September-20-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language