-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.R
More file actions
executable file
·26 lines (21 loc) · 870 Bytes
/
server.R
File metadata and controls
executable file
·26 lines (21 loc) · 870 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
26
#------------------------------------------------------------------
# Program : server.R
# Objective:
# Author : I.Sanchez
# Creation : 29/05/2018
# Update : 31/05/2018
#------------------------------------------------------------------
## packages --------------------------------------------------------------------
library(shiny)
library(shinyjs)
library(shinydashboard)
library(DT)
library(phisWSClientR)
## Shiny server ---------------------------------------------------------------
shinyServer(function(input, output, session){
source("src/server/serverWelcome.R", local=TRUE, encoding="UTF-8")$value
source("src/server/serverToken.R", local=TRUE, encoding="UTF-8")$value
source("src/server/serverAbout.R", local=TRUE, encoding="UTF-8")$value
# Hide the loading message (js script)
session$sendCustomMessage("initializedMessage", 0)
})