mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-08 22:48:21 -05:00
15 lines
231 B
R
15 lines
231 B
R
library(shiny)
|
|
|
|
ui <- fluidPage(
|
|
)
|
|
|
|
server <- function(input, output, session) {
|
|
}
|
|
|
|
opts <- list(
|
|
port = as.numeric(Sys.getenv("SHINY_TESTTHAT_PORT_APP", "8080")),
|
|
launch.browser = FALSE
|
|
)
|
|
|
|
shinyApp(ui, server, options = opts)
|