lift_shinyapp.Rd 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/lift.R
  3. \name{lift_shinyapp}
  4. \alias{lift_shinyapp}
  5. \title{Dockerize an Shiny App}
  6. \usage{
  7. lift_shinyapp(appDir = getwd(), appFiles = NULL,
  8. output_file = "docker.Rmd", output_dir = NULL, maintainer = NULL,
  9. email = NULL, shiny_base = "rocker/shiny")
  10. }
  11. \arguments{
  12. \item{appDir}{Directory containing application. Defaults to current working directory.}
  13. \item{appFiles}{The files and directories to bundle and deploy (only if upload = TRUE). Can be NULL, in which case all the files in the directory containing the application are bundled. Takes precedence over appFileManifest if both are supplied.}
  14. \item{output_file}{A temporariy R markdown file with liftr header passed from shina app folder.}
  15. \item{output_dir}{output_dir Directory to output \code{Dockerfile}. If not provided, will be the same directory as \code{input}.}
  16. \item{maintainer}{maintainer information for Dockerfile}
  17. \item{email}{email address for Dockerfile}
  18. \item{shiny_base}{base image for shiny, by default it's rocker/shiny}
  19. }
  20. \description{
  21. Parse dependecies from a shiny app folder and lift it into a Dockerfile
  22. }
  23. \examples{
  24. \dontrun{
  25. lift_shinayapp("test_app_folder")
  26. }
  27. }