Skip to content

Instantly share code, notes, and snippets.

@korniichuk
Last active February 26, 2019 13:50
Show Gist options
  • Save korniichuk/b4d677e0aa774140e08f891ca8735315 to your computer and use it in GitHub Desktop.
Save korniichuk/b4d677e0aa774140e08f891ca8735315 to your computer and use it in GitHub Desktop.
Medium. Deploy Plotly Dash app with Dash DAQ components on AWS cloud
import dash
import dash_html_components as html
app = dash.Dash(__name__)
app.scripts.config.serve_locally = True
app.css.config.serve_locally = True
app.layout = html.Div([
html.H1('Hello, World!')
])
application = app.server
if __name__ == '__main__':
application.run(debug=True, port=8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment