An open API service indexing awesome lists of open source software.

https://github.com/kapsner/expenditr


https://github.com/kapsner/expenditr

Last synced: 10 months ago
JSON representation

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.