-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.R
23 lines (23 loc) · 970 Bytes
/
server.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#'==============================================================
#'@description Server page for CMTCN
#'==============================================================
# load("./Profile/Project.Rd")
#'==============================================================
#'set max request size
#'source for help
#'print version of R
#'==============================================================
options(shiny.maxRequestSize = 100*1024^2)
source("helpers.R")
# print(sessionInfo())
#'==============================================================
#' Server functions are divided by tab
#' Getting start page's Server
#'==============================================================
shinyServer(function(input,output,session){
source("server-tab-Start.R",local = TRUE)
source("server-tab-Network.R",local = TRUE)
source("server-tab-Tutorial.R",local = TRUE)
source("server-tab-News.R",local = TRUE)
source("server-tab-About.R",local = TRUE)
})