23 lines
440 B
R
23 lines
440 B
R
#
|
|
# 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/
|
|
#
|
|
|
|
library(shiny)
|
|
library(dplyr)
|
|
library(shinythemes)
|
|
library(lubridate)
|
|
|
|
# Load files
|
|
source("Data/Loader.R")
|
|
source("UI/main.R")
|
|
source("Server/main.R")
|
|
|
|
# Run the application
|
|
shinyApp(ui = ui, server = server)
|
|
|