Nothing
server <- function(input, output, session) {
res_auth <- secure_server(
check_credentials = check_credentials(
"database.sqlite",
passphrase = "passphrase_wihtout_keyring"
)
)
# user info
output$auth_output <- renderPrint({
reactiveValuesToList(res_auth)
})
# shinymanager input
output$shinymanager_language <- renderPrint({
input$shinymanager_language
})
output$shinymanager_where <- renderPrint({
input$shinymanager_where
})
}
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.