How to use external terminal with IDE when running app

Within your app.py file, where you have the command that runs the server, you can turn on debug mode. Whenever you modify a file in the app, it will auto reload the application with the changes.

if __name__ == "__main__":
    app.run_server(debug=True)
1 Like