inst/shinyApp/global.R

# clear the environment
library(dplyr)
library(purrr)
library(stringr)
library(readr)
library(readxl)
library(haven)
library(shiny)
library(shinyjs)
library(shinythemes)
library(DT)
library(shinyexplorer)

# Set file upload size limit: 100 MB
options(shiny.maxRequestSize = 1024 * 1024 ^ 2)

source("ui.R",     local = TRUE)
source("server.R", local = TRUE)

shinyApp(ui = ui, server = server)
mathematiguy/shinyexplorer documentation built on May 26, 2019, 6:35 a.m.