Nothing
library(shiny)
ui <- navbarPage(
source(file.path("ui", "ui.R"), local = TRUE)$value
)
server <- function(input, output, session) {
# Include the logic (server) for each tab
source(file.path("server", "server.R"), local = TRUE)$value
}
shinyApp(ui = ui, server = server)
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.