R/run-app.R

Defines functions run_app

Documented in run_app

#' Run the Shiny Application
#'
#' @export
run_app <- function(...) {
  app_path <- system.file("app/app.Rmd", package = "iccbot")
  rmarkdown::run(
    app_path,
    default_file = "app.Rmd",
    shiny_args = list(launch.browser = TRUE)
  )
}
tjmahr/iccbot documentation built on Dec. 2, 2020, 3:30 a.m.