-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.R
45 lines (35 loc) · 819 Bytes
/
app.R
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# KCO Dashboard
#
# - Start of the app that loads UI and server
# - Load packages and data
# - shinyApp: the shinyApp function creates Shiny app objects from an explicit UI/server pair.
#
# (c) Erasmus School of Economics 2022
# clear workspace
rm(list=ls())
#### PACKAGES ####
library(shiny)
library(tidyverse)
library(plyr)
library(shinydashboard)
library(dashboardthemes)
library(shinyWidgets)
library(plotly)
library(readxl)
library(shinyBS)
library(grid)
library(markdown)
library(shinyjs)
library(shinyalert)
library(shinyscreenshot)
library(shinydisconnect)
library(r2r)
library(data.table)
#### RUN APP ####
source("./config.R")
source("./lang/lang.R")
source("./startup.R")
source("./code/Theme_PoorMansFlatly.R")
source("./code/ui.R")
source("./code/server.R")
shinyApp(ui = ui, server = server)