#' Run the app
#'
#' @param port Port Number to use
#'
#' @import promises future xml2 data.table shiny Rstox utils
#' @importFrom shinycssloaders withSpinner
#' @export
run <- function(port = getOption("shiny.port")) {
# We use promises, enable the 'multiprocess' plan
plan(multiprocess)
myapp <- shinyApp(ui = appui, server = appserver)
runApp(myapp, port=port)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.