-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.R
More file actions
18 lines (17 loc) · 678 Bytes
/
app.R
File metadata and controls
18 lines (17 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above.
#
# Find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com/
#
timeout<-2147483
options(shiny.maxRequestSize = 30000*1024^2,app_init_timeout=timeout,shiny.app_init_timeout=timeout,
shiny.app_idle_timeout=timeout,app_connection_timeout=timeout,shiny.app_connection_timeout=timeout,
app_read_timeout=timeout,shiny.app_read_timeout=timeout,app_idle_timeout=timeout) #,port=4444,shiny.trace=T)
source("shiny/global.R")
source("shiny/ui.R")
source("shiny/server.R")
# Run the application
shinyApp(ui = ui, server = server)