diff --git a/NAMESPACE b/NAMESPACE index 25f7cf9..1980203 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,5 +1,6 @@ # Generated by roxygen2: do not edit by hand +export(run_app) import(shiny) import(shinyWidgets) importFrom(bs4Dash,box) @@ -23,6 +24,7 @@ importFrom(golem,activate_js) importFrom(golem,add_resource_path) importFrom(golem,bundle_resources) importFrom(golem,favicon) +importFrom(golem,with_golem_options) importFrom(grDevices,dev.off) importFrom(grDevices,jpeg) importFrom(grDevices,png) @@ -33,6 +35,7 @@ importFrom(httr,content) importFrom(httr,status_code) importFrom(shiny,NS) importFrom(shiny,includeMarkdown) +importFrom(shiny,shinyApp) importFrom(shiny,tagList) importFrom(shinydisconnect,disconnectMessage) importFrom(stats,dbinom) diff --git a/man/run_app.Rd b/man/run_app.Rd new file mode 100644 index 0000000..065e74e --- /dev/null +++ b/man/run_app.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/run_app.R +\name{run_app} +\alias{run_app} +\title{Run the Shiny Application} +\usage{ +run_app( + onStart = NULL, + options = list(), + enableBookmarking = NULL, + uiPattern = "/", + ... +) +} +\arguments{ +\item{onStart}{A function that will be called before the app is actually run.} + +\item{options}{Named options that should be passed to the `shiny::runApp` call.} + +\item{enableBookmarking}{Can be one of `"url"`, `"server"`, or `"disable"`.} + +\item{uiPattern}{A regular expression that will be applied to each `GET` request.} + +\item{...}{arguments to pass to golem_opts. +See `?golem::get_golem_options` for more details.} +} +\description{ +Run the Shiny Application +}