forked from anvaly/SpatialPortal
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathserver.R
More file actions
25 lines (19 loc) · 952 Bytes
/
Copy pathserver.R
File metadata and controls
25 lines (19 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -------------------------------------------------
# -- FRAMEWORK server.R --
# -------------------------------------------------
# NOTEs: --
# Program code goes in "program" directory files --
# -------------------------------------------------
# ***** DO NOT EDIT THIS FILE ***** --
# -------------------------------------------------
source(paste("program", "server_global.R", sep = .Platform$file.sep),
local = TRUE)
shinyServer(function(input, output, session) {
ss_userAction.Log <- periscope:::fw_get_user_log()
source(paste("program", "server_local.R", sep = .Platform$file.sep),
local = TRUE)
periscope:::fw_server_setup(input, output, session, ss_userAction.Log)
loginfo("%s started with log level <%s>",
periscope:::fw_get_title(), periscope:::fw_get_loglevel(),
logger = ss_userAction.Log)
})