https://github.com/nz-stefan/shinyscaffold
Create boilerplate code for Shiny web applications
https://github.com/nz-stefan/shinyscaffold
Last synced: 4 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T11:28:40.000Z (over 7 years ago)
- Last Synced: 2024-08-13T07:13:50.528Z (8 months 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")
```