You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Dash.jl does not attempt to detect whether a PORT environment variable has been set before launching the server, so using a statement such as
run_server(app, "0.0.0.0")`
when deploying the app may fail to bind to the correct port. This may cause issues with Dash Enterprise or Heroku unless a workaround is used, e.g.
port =parse(Int64, ENV["PORT"])
run_server(app, "0.0.0.0", port)
The text was updated successfully, but these errors were encountered:
rpkyle
changed the title
Dash.jl should automatically set port if their corresponding PORT environment variable exists
Dash.jl should automatically set port if corresponding PORT environment variable exists
Oct 14, 2020
Currently, Dash.jl does not attempt to detect whether a
PORT
environment variable has been set before launching the server, so using a statement such aswhen deploying the app may fail to bind to the correct port. This may cause issues with Dash Enterprise or Heroku unless a workaround is used, e.g.
The text was updated successfully, but these errors were encountered: