knitr::opts_chunk$set(echo = TRUE)

# R-build *.R to * Rmd for including in following sections
child_r_files <- c("01_start.R", "02_dev.R", "03_deploy.R", "run_dev.R")
for (child_r_file in child_r_files) {
  res <- knitr::spin(child_r_file, knit = FALSE)
  cat(res, sep = "\n")
}

# Child rmd files needs included into final file
child_rmd_files <- fs::path_ext_set(child_r_files, ext = "Rmd")

The cheat sheet is used as a notes for developer to develop, deploy, and operate an production-grade shiny App.

It was generated from following R scripts files:

# include child Rmd files
   for (child_rmd in child_rmd_files) {
     try(
       unlink(child_rmd)
     )
   }


chriszheng2016/zstexplorer documentation built on June 13, 2021, 9:47 a.m.