example_app {RInno} | R Documentation |
Creates a basic app to test in wd/app_dir
.
example_app(app_dir = "app", wd = getwd(), type = "Shiny")
app_dir |
Shiny app's directory. Defaults to "app". |
wd |
Path to working directory. Defaults to |
type |
"Shiny" or "flexdashboard". Defaults to "Shiny". |
Shiny app example.
Jonathan M. Hill
## Not run: # Shiny example example_app() create_app("myapp", "app") # Flexdashboard example example_app(type = "flexdashboard") create_app("myapp", "app") ## End(Not run)