This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library("future") | |
library("httr") | |
library("magrittr") | |
library("plumber") | |
library("shiny") | |
library("uuid") | |
library("websocket") | |
library("R6") | |
shiny_port <- 5174 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!require(rsconnect)) { | |
install.packages("rsconnect") | |
library("rsconnect") | |
} | |
options(rsconnect.max.bundle.size = 9145728000) | |
# Print a list of app dependencies. Libraries need to be loaded | |
# before publishing so deployApp() knows what is necessary. | |
error_on_missing_name <- function(name){ |
OlderNewer