inst/scAppTemplate/R/run_app.R

#' Run the Shiny Application
#'
#' @param ... A series of options to be used inside the app.
#'
#' @export
#' @importFrom shiny shinyApp
#' @importFrom golem with_golem_options
run_app <- function(
  ...
) {
  with_golem_options(
    app = shinyApp(
      ui = app_ui, 
      server = app_server,
      enableBookmarking = "url"
    ), 
    golem_opts = list(...,startUpList = loadStartUpData())
  )
}
decusInLabore/biologicViewerSC documentation built on Nov. 29, 2024, 11:46 a.m.