This function exports a Shiny app provided by the teachR library to a local folder on a user's computer. Useful for modifying the app or running it on a Shiny Server instance for example.

export_app(app, dest)

Arguments

app

The name of the app to export.

dest

The destination of the app folder on the user's computer. A folder with the name of the app will be created at this location.

Value

This function does not return anything.

Examples

# NOT RUN {
 # Export app to the current working directory
 export_app("aggregation_segregation", ".")
# }