Nothing
R package with a simple Shiny module
for easily sharing files.
Admin can manage directories & files (add, remove, edit, ...)
User can only download files
yaml
file to save informationsYou can install:
devtools::install_github("datastorm-open/shinydrive")
online
https://datastorm-demo.shinyapps.io/shinydrive/
local
runApp(system.file("demo_app", package = "shinydrive"))
require(shinydrive)
ui <- fluidPage(
shiny_drive_ui(id = "idm")
)
server <- function(input, output, session) {
callModule(module = shiny_drive_server,
id = "idm",
session = session,
admin_user = TRUE,
save_dir = getwd(),
lan = "EN")
}
shinyApp(ui, server)
Admin view
User view
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.