https://github.com/kapsner/baseapp
A basic shiny app in an R package
https://github.com/kapsner/baseapp
Last synced: 11 months ago
JSON representation
A basic shiny app in an R package
- Host: GitHub
- URL: https://github.com/kapsner/baseapp
- Owner: kapsner
- License: gpl-3.0
- Created: 2019-07-19T08:21:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-05T18:00:09.000Z (over 5 years ago)
- Last Synced: 2025-01-12T12:29:36.453Z (about 1 year ago)
- Language: R
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# baseApp
[](https://github.com/kapsner/baseApp/actions)
[](https://github.com/kapsner/baseApp/actions)
[](https://github.com/kapsner/baseApp/actions)
[](https://codecov.io/gh/kapsner/baseApp)
[](https://gitlab.com/kapsner/baseApp/commits/master)
[](https://gitlab.com/kapsner/baseApp/commits/master)
This repository includes an example of a basic shiny app wrapped into an R package.
## Docker
To build a deployable docker container run:
```
cd ./docker/
chmod +x build_image.sh
./build_image.sh
```
## Installation
You can install the development version of baseApp with:
``` r
install.packages("devtools")
devtools::install_github("kapsner/baseApp")
```
## Example
This is a basic example which shows you how to launch the baseApp:
``` r
library(baseApp)
launch_app()
```
To open the shiny application in your webbrowser, go to http://localhost:3838
# More Infos:
- about Shiny: https://www.rstudio.com/products/shiny/
- RStudio and Shiny are trademarks of RStudio, Inc.