Nothing
app_dir <- function(app = NULL, create = FALSE, dir = data_dir()) {
path <- dir_create(file.path(dir, "apps"))
if (is.null(app)) {
path
} else {
path <- file.path(path, app)
if (create) dir_create(path) else path
}
}
bin_dir <- function(dir = data_dir()) dir_create(file.path(dir, "bin"))
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.