R/run_app.R

Defines functions run_app

Documented in run_app

#' Launch covid19FR Shiny App
#'
#'@param ... additional arguments to be passed to the \link[shiny]{runApp} function.
#'
#'@examples
#'if(interactive()){
#' covid19FR::run_app()
#'}
#'
#' @export
#' @importFrom shiny runApp
run_app <- function(...) {
  shiny::runApp(list(ui = app_ui, 
                     server = app_server), 
                port = 8080,
                ...)
}
borishejblum/covid19FR documentation built on March 28, 2020, 4:33 a.m.