Seems the dev server initiated from app.run_server(debug=True)
will be shut down if there is error in the code, and we need to restart the app by running python app.py
after the error is corrected, and this is quite ‘annoying’, considering that code errors are unavoidable in the dev process…
Is there a way for dash to start a dev server that has ‘hot reload’ type of function that doesn’t need restart facing error in the code?
Thanks.