diff --git a/.Rbuildignore b/.Rbuildignore index 9eb783f..976b7d6 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -6,3 +6,4 @@ docker-compose.yml renovate.json dev/ +^\.lintr$ diff --git a/DESCRIPTION b/DESCRIPTION index e9e8f93..4078b85 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -25,6 +25,7 @@ RoxygenNote: 7.3.2 Imports: bslib, dplyr, + DT, ggplot2, magrittr, rapbase, diff --git a/R/run_app.R b/R/run_app.R index c65baee..1b36a1e 100644 --- a/R/run_app.R +++ b/R/run_app.R @@ -1,5 +1,7 @@ #' Run the rapadm Shiny Application #' +#' @param browser Open app in browser window +#' #' @return An object representing the rapadm app #' @export diff --git a/man/run_app.Rd b/man/run_app.Rd index 7f5f95a..3c3a905 100644 --- a/man/run_app.Rd +++ b/man/run_app.Rd @@ -6,6 +6,9 @@ \usage{ run_app(browser = FALSE) } +\arguments{ +\item{browser}{Open app in browser window} +} \value{ An object representing the rapadm app }