R/shiny_config.R

Defines functions shiny_config

Documented in shiny_config

#' EviAtlas ShinyApp Configuration file
#' @export

shiny_config <- function() {
  config <- list()
  # maximum upload size 100 MB-- could be increased if proves problematic for users
  config$max_file_size_mb <- 100

  options(shiny.maxRequestSize = config$max_file_size_mb * 1024^2)
}
conoroheocha/NBSVisTool documentation built on Feb. 24, 2022, 12:25 a.m.