This repository includes an example of a basic shiny app wrapped into an R package.
To build a deployable docker container run:
cd ./docker/
chmod +x build_image.sh
./build_image.sh
You can install the development version of baseApp with:
install.packages("devtools")
devtools::install_github("kapsner/baseApp")
This is a basic example which shows you how to launch the baseApp:
library(baseApp)
launch_app()
To open the shiny application in your webbrowser, go to http://localhost:3838
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.