Skip to content

Commit

Permalink
push again to make image public
Browse files Browse the repository at this point in the history
  • Loading branch information
spfeiffe committed May 13, 2024
1 parent 72302ae commit 04c4878
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 1 deletion.
2 changes: 1 addition & 1 deletion global.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# [email protected]
# 2022-08-17
#~~~~~~~~~~~~~~~~~~~~~~~~

# Packages ----

# ## UI----
Expand Down
94 changes: 94 additions & 0 deletions global.R.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# Global
#
# Add package from UI and Server
#
# [email protected]
# 2022-08-17
#~~~~~~~~~~~~~~~~~~~~~~~~

# Packages ----

# ## UI----
library(shiny)
library(shinyWidgets)
library(shinyjs) # fails without it
library(shinyalert)
library(shinythemes)
library(shinydashboard)
library(dplyr)
library(ggplot2)
library(ggthemes)
library(DT)
library(plotly)
library(xts)
#library(shinycustomloader)
library(shinycssloaders)
library("shinyjqui")
#
# ## Server----
library("readxl") # to read excel files
library("writexl")
library("data.table")
#library("DT")
library("tidyverse") # fails without dplyr, stringr
library("tibbletime")
#library("shiny")
#library("shinydashboard")
#library("shinyjs")
library("shinyBS")
library("shinyvalidate")
#library("shinythemes")
#library("shinyalert")
library("conflicted") # fails without it
library("dataRetrieval")
library("doBy")
library("knitr")
library("htmltools")
library("rmarkdown")
library("highr")
library("survival")
library("shinyFiles")
#library("plotly")
library("zip")
library("reshape2")
library("ContDataQC")
library("ContDataSumViz")
library("StreamThermal")
library("IHA")
library("XLConnect")
library("daymetr")
library("lubridate")
library("promises")
library("future")
library("tinytex")
library("purrr")
#library("ggtext")
library("qpcR")
library("readr")
library("padr")
#library("ggh4x")
plan(multisession)
#options(scipen=999)



# fails without dplyr and stringr from tidyverse

# Functions ----
source("_moved/import_raw_data.R")
source("update_ContDataQC/config.R")
source("update_ContDataQC/CompSiteCDF.updated.R")
source("update_ContDataQC/SumStats.updated.R")
source("update_ContDataQC/ReportMetaData.R")
source("update_ContDataQC/build_summary_updated.R")


source("update_ContDataQC/fun.ConvertDateFormat.R")
source("constants.R")

list.files("modules", recursive = TRUE) %>%
purrr::map(~ source(paste0("modules/", .)))


# Other ----
options(shiny.maxRequestSize = 100*1024^2)

0 comments on commit 04c4878

Please sign in to comment.