Using Flask Debug Mode, the local dev server will restart on file save if you set the debug
flag:
app.debug = True
app.run()
If you are running a Flask application with Heroku Local, how do you achieve this same behavior?
Using Flask Debug Mode, the local dev server will restart on file save if you set the debug
flag:
app.debug = True
app.run()
If you are running a Flask application with Heroku Local, how do you achieve this same behavior?