R/run-app.R

Defines functions run_app

Documented in run_app

#' @title Run the Shiny application
#'
#' @description Run the Shiny application
#'
#' @export
#' @param ... Additional golem options passed to [golem::with_golem_options()]
#' @importFrom shiny shinyApp
#' @importFrom golem with_golem_options
run_app <- function(...) {
  with_golem_options(
    app = shinyApp(ui = app_ui, server = app_server),
    golem_opts = list(...)
  )
}
Sage-Bionetworks/dccmonitor documentation built on May 28, 2022, 10:39 a.m.