Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 639 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 639 Bytes

demo-shiny-penguins

Palmer's penguins shiny dashboard demo.

screenshot

Usage

shiny::runApp('app')

Deployment

Git-backed

Update the code, and then run:

rsconnect::writeManifest("app")

The app will be automatically redeployed by RStudio Connect.

Programatic

You can also deploy the app using the rsconnect api:

rsconnect::deployApp(
  appDir = "app",
  appFiles = c("app.R"),
  appTitle = "Shiny Penguins API Deployment"
)