DEV Community

mani-playground
mani-playground

Posted on

Start a flask app

source venv/bin/activate
export FLASK_APP=flaskr
flask run

//If we need to make the server publicly available
flask run --host=0.0.0.0

Reference :
https://flask.palletsprojects.com/en/1.1.x/quickstart/

Top comments (0)