Skip to content

App Development Guide

Port Selection

The shiny app file should set the host to 0.0.0.0 and specify the port. An example skeleton is below:

ui = dashboardPage(
    # UI Code
)

server = function(input, output, session) {
    # Sever Code
}

options(shiny.host = "0.0.0.0", shiny.port = 8789)
shinyApp(ui = ui, server = server)

Host App on Foundry

To host the app on Foundry, navigate to the Apps page and select the My Apps tab and then click Create App