https://github.com/kapsner/expenditr
https://github.com/kapsner/expenditr
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kapsner/expenditr
- Owner: kapsner
- License: gpl-3.0
- Created: 2019-09-15T18:15:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-10T16:07:03.000Z (over 6 years ago)
- Last Synced: 2025-01-12T12:29:26.633Z (over 1 year ago)
- Language: R
- Homepage:
- Size: 41 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
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)
launchApp()
```
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.