ubigen/R/app.R

10 lines
272 B
R
Raw Normal View History

2022-05-07 17:54:23 +02:00
#' Run the application server.
#'
2022-05-12 13:37:53 +02:00
#' @param host The hostname to serve the application on.
2022-05-07 17:54:23 +02:00
#' @param port The port to serve the application on.
#'
#' @export
2022-05-12 13:37:53 +02:00
run_app <- function(host = "127.0.0.1", port = 3464) {
2022-05-30 19:32:19 +02:00
runApp(shinyApp(ui, server), host = host, port = port)
2022-05-07 17:54:23 +02:00
}