DEV Community

Discussion on: Fake news’ foe: Machine Learning and Twilio

Collapse
 
mburszley profile image
Maximilian Burszley • Edited

Just a note, Flask devs recommend using flask run to run a Flask app. There is setup that happens in the background that you miss when using app.run().

FLASK_APP=app:app FLASK_ENV=development flask run
Collapse
 
jbahire profile image
Jayesh Bapu Ahire

Hey! Thanks for pointing this out! somehow I missed it. Fixed it! 🙂