Nothing
set_envvars <- function(envvars) {
map_rows(envvars, set_envvar)
}
set_envvar <- function(envvar) {
args <- list(envvar["value"])
names(args) <- envvar["name"]
if (!identical(as.character(envvar["value"]), "")) {
do.call(what = Sys.setenv, args = args)
}
invisible()
}
in_test <- function() {
Sys.getenv("TESTTHAT") == "true"
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.