FLASK Run localhost

# First, export the name of your flask app
export FLASK_APP=app_name

# Now, run the app from the command line
flask run

# Now, open http://127.0.0.1:8000/ in your browser (or use whatever port you specified)
Passionate Amoeba