from dash import Dash, html app = Dash(__name__) app.layout = html.Div(html.H1("Coool stuff")) app.run_server(debug=True, port=7860, host='0.0.0.0')