Starts the RPACT Cloud app, i.e., after installing the package, you can start the app by calling rpact.cloud::launchApp().
Usage
launchApp(
...,
showDebugMessages = FALSE,
stopShinyAppAutomatically = TRUE,
host = getOption("shiny.host", "127.0.0.1"),
port = as.integer(getOption("shiny.port", "4839")),
launch.browser = TRUE
)Arguments
- ...
Ensures that all arguments (starting from the "...") are to be named and that a warning will be displayed if unknown arguments are passed.
- showDebugMessages
If
TRUE, debug messages will be displayed; default isFALSE.- stopShinyAppAutomatically
If
TRUE, after closing the browser window the currently running Shiny app will be stopped, returning control to the caller ofstart(); default isTRUE.- host
The IPv4 address that the application should listen on. Defaults to the
shiny.hostoption, if set, or "127.0.0.1" if not.- port
The TCP port that the application should listen on. Default is
4839.- launch.browser
If
TRUE, the system's default web browser will be launched automatically.
