Learn R Programming

dash (version 0.9.4)

run_app: Run a Dash app

Description

Run a Dash app

Usage

run_app(
  app,
  host = Sys.getenv("DASH_HOST", Sys.getenv("HOST", "127.0.0.1")),
  port = Sys.getenv("DASH_PORT", Sys.getenv("PORT", 8050)),
  browser = interactive()
)

Arguments

app

A dash application created with dash_app()

host

Hostname to run the app.

port

Port number to run the app.

browser

Whether or not to launch a browser to the app's URL.