https://github.com/nz-stefan/shinyscaffold
  
  
    Create boilerplate code for Shiny web applications 
    https://github.com/nz-stefan/shinyscaffold
  
        Last synced: 3 months ago 
        JSON representation
    
Create boilerplate code for Shiny web applications
- Host: GitHub
 - URL: https://github.com/nz-stefan/shinyscaffold
 - Owner: nz-stefan
 - Created: 2017-08-23T10:57:45.000Z (about 8 years ago)
 - Default Branch: master
 - Last Pushed: 2017-08-26T11:28:40.000Z (about 8 years ago)
 - Last Synced: 2024-08-13T07:13:50.528Z (about 1 year ago)
 - Language: R
 - Size: 256 KB
 - Stars: 6
 - Watchers: 1
 - Forks: 1
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 
 
Awesome Lists containing this project
- jimsghstars - nz-stefan/shinyscaffold - Create boilerplate code for Shiny web applications (R)
 
README
          # shinyscaffold
Create boilerplate code for Shiny web applications
# Installation
The package can be installed directly from github using `devtools`.
```r
install.packages("devtools")
library(devtools)
install_github("nz-stefan/shinyscaffold")
```
# Usage
```r
library(shinyscaffold)
# create a configuration file
scaffold_config("/tmp/my-config.yml")
# scaffold a Shiny app from the config file
setwd("/tmp")
scaffold_app("/tmp/my-config.yml")
```