Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/virtualstaticvoid/heroku-shiny-app
Example R Shiny Application on Heroku
https://github.com/virtualstaticvoid/heroku-shiny-app
demo-app heroku heroku-app r rshiny shiny template
Last synced: 3 months ago
JSON representation
Example R Shiny Application on Heroku
- Host: GitHub
- URL: https://github.com/virtualstaticvoid/heroku-shiny-app
- Owner: virtualstaticvoid
- License: mit
- Created: 2017-02-11T18:21:25.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2022-08-31T19:36:09.000Z (about 2 years ago)
- Last Synced: 2024-06-11T08:46:58.870Z (5 months ago)
- Topics: demo-app, heroku, heroku-app, r, rshiny, shiny, template
- Language: R
- Homepage:
- Size: 35.2 KB
- Stars: 19
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - virtualstaticvoid/heroku-shiny-app - Example R Shiny Application on Heroku (R)
README
# Example Shiny App on Heroku
This is an example [Shiny][shiny] application, which uses the [heroku-buildpack-r][buildpack] on Heroku.
> Shiny is an R package that makes it easy to build interactive web apps straight from R. You can host
> standalone apps on a webpage or embed them in R Markdown documents or build dashboards. You can also
> extend your Shiny apps with CSS themes, htmlwidgets, and JavaScript actions.## Usage
[![Deploy][button]][deployapp]
You can use this project as a template for creating Shiny applications on Heroku.
Execute these commands to get started:
```bash
# get the sources
git clone https://github.com/virtualstaticvoid/heroku-shiny-app.git
cd heroku-shiny-app# optionally, reinitialize git
rm -rf .git
git init -b main
git add --all
git commit -m "initial"# create a new heroku application, set the buildpack and deploy
heroku create --stack heroku-20 --buildpack vsv/heroku-buildpack-r# deploy
git push heroku main# view the application
heroku open
```## License
MIT License. Copyright (c) 2017 Chris Stefano. See [LICENSE](LICENSE) for details.
[buildpack]: https://github.com/virtualstaticvoid/heroku-buildpack-r
[button]: https://www.herokucdn.com/deploy/button.svg
[deployapp]: https://heroku.com/deploy?template=https://github.com/virtualstaticvoid/heroku-shiny-app/tree/main
[shiny]: https://shiny.rstudio.com/