Nothing
Two main functions in shinydrive
:
shiny_drive_ui
, the UI part of the module in shiny with only the id argumentshiny_drive_server
the SERVER part of the module in shiny : This function must be used with callModule
function
# ui
ui = shiny::fluidPage(
shiny_drive_ui(id = "idm")
)
# server
server = function(input, output, session) {
shiny::callModule(module = shiny_drive_server,
id = "idm",
admin_user = TRUE,
save_dir = getwd(),
lan = "FR")
}
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.