Nothing
.onLoad <- function(libname, pkgname) {
path <- system.file("static", package = "kinesis")
shiny::addResourcePath(prefix = "static", directoryPath = path)
op <- options()
op.kinesis <- list(
kinesis.workers = 1
)
toset <- !(names(op.kinesis) %in% names(op))
if(any(toset)) options(op.kinesis[toset])
invisible()
}
.onUnload <- function(libname, pkgname) {
shiny::removeResourcePath("static")
invisible()
}
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.