forked from gexijin/idepGolem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.R
More file actions
20 lines (19 loc) · 748 Bytes
/
app.R
File metadata and controls
20 lines (19 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Launch the ShinyApp (Do not remove this comment)
# To deploy, run: rsconnect::deployApp()
# Or use the blue button on top of this file
if (!require("idepGolem", quietly = TRUE)){
devtools::install_github("Bees-GO/idepGolem", upgrade = "never", force = TRUE)
# If only re-install idepGolem from local, you can run the command below:
# install.packages(".", repos = NULL, type = "source", upgrade = "never", force = TRUE)
}
#pkgload::load_all(export_all = FALSE,helpers = FALSE,attach_testthat = FALSE)
options( "golem.app.prod" = TRUE)
# Loading all packages ----
library(shiny)
library(shinyjs)
library(shinyFiles)
library(shinycssloaders)
library(dplyr)
library(httr)
library(jsonlite)
idepGolem::run_app() # add parameters here (if any)