I want to create a shinyApp that runs just locally, i.e. withouth a URL that can be accessed by others.
Here a minimal example:
library(shiny)
ui <- fluidPage("Some app")
server <- function(input, output) {}
shinyApp(ui = ui, server = server)
While running this, the console says:
If I type the URL into my browser, I see the App I am writing on. How can I hinder the app to go online? This is important for my use case because we handle sensible data which must remain locally.