All Projects → flaviobarros → Shiny Wordcloud

flaviobarros / Shiny Wordcloud

Example dockerized Shiny App

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Shiny Wordcloud

Ctmmweb
Web app for analyzing animal tracking data, built upon ctmm R package
Stars: ✭ 22 (-74.42%)
Mutual labels:  shiny
Shinypanels
Collapsible panels layout for r shiny apps
Stars: ✭ 50 (-41.86%)
Mutual labels:  shiny
Stminsights
A Shiny Application for Inspecting Structural Topic Models
Stars: ✭ 74 (-13.95%)
Mutual labels:  shiny
Datofutbol
Dato Fútbol repository
Stars: ✭ 23 (-73.26%)
Mutual labels:  shiny
Sig Bio Shiny
A standalone interactive application for detecting biological significance on a set of genes
Stars: ✭ 34 (-60.47%)
Mutual labels:  shiny
Db Dashboard
Project files of the article featured here: http://db.rstudio.com/best-practices/dashboards/
Stars: ✭ 58 (-32.56%)
Mutual labels:  shiny
Shinydashboard
Shiny Dashboarding framework
Stars: ✭ 718 (+734.88%)
Mutual labels:  shiny
Gfonts
🔤 Offline Google Fonts for rmarkdown and shiny
Stars: ✭ 85 (-1.16%)
Mutual labels:  shiny
Reactor
unit testing for shiny reactivity
Stars: ✭ 44 (-48.84%)
Mutual labels:  shiny
Startapp
The START App: R Shiny Transcriptome Analysis Resource Tool
Stars: ✭ 73 (-15.12%)
Mutual labels:  shiny
Aisvms vis
AIS visualization from an interactive R and Shiny based web app using Material Design from Google.
Stars: ✭ 8 (-90.7%)
Mutual labels:  shiny
Shiny Gem
A data analysis web-app written in R Shiny.
Stars: ✭ 15 (-82.56%)
Mutual labels:  shiny
Sever
🔪Good-looking problems: customise your Shiny disconnected screen and error messages
Stars: ✭ 60 (-30.23%)
Mutual labels:  shiny
Shinyappdemo
A demo shiny app inside a package
Stars: ✭ 23 (-73.26%)
Mutual labels:  shiny
Shufflecards
✨ Create magical grid layouts in Shiny & Markdown
Stars: ✭ 76 (-11.63%)
Mutual labels:  shiny
Mastering Shiny
Mastering Shiny: a book
Stars: ✭ 790 (+818.6%)
Mutual labels:  shiny
Supreme
Generate UML diagrams of Shiny modules
Stars: ✭ 52 (-39.53%)
Mutual labels:  shiny
Shinybulma
🌐 Bulma.io for Shiny
Stars: ✭ 86 (+0%)
Mutual labels:  shiny
Apps
Carson Sievert's web applications
Stars: ✭ 77 (-10.47%)
Mutual labels:  shiny
Explore
R package that makes basic data exploration radically simple (interactive data exploration, reproducible data science)
Stars: ✭ 69 (-19.77%)
Mutual labels:  shiny

Build Status DOI

Dockerized Shiny App

This is the Dockerized Shiny App Wordcloud

This Dockerfile is based on Debian "testing" and r-base image.

The image is available from Docker Hub.

Usage:

To run this Shiny App on your computer:

docker run --rm -p 80:80 flaviobarros/shiny-wordcloud

and it will avaliable at http://127.0.0.1/ or http://localhost

You can run the container at other ports. It can happen that there is some service running at PORT 80, as Apache ou Nginx. To run the app at PORT 3838 for example, you can use:

docker run --rm -p 3838:80 flaviobarros/shiny-wordcloud

Intented usage:

This project can be used as a start point to build any dockerized shiny app that could be distributed at any server running docker. Possible use cases are:

  • Deploy a single Shiny App at AWS, Google Compute Engine, Azure or a private server with docker.
  • Deploy Shiny Apps at a docker based PaaS as dokku.

Building your own Shiny App:

After developing your Shiny App, you will need two files for deployment: ui.R and server.R. Then:

  • Remove all files from folder mypp (these files are from Wordcloud example) and put your files there, ui.R and server.R
  • Build a docker image with:
docker build -t yourname/yourappname .

At this poit you will be able to run your app, just like Wordcloud.

Deploy with a docker based PaaS

If you have a PaaS with Dockerfiles support, like Deis or Dokku, you can git push this image. I just wrote a post with further instructions: Git pushing Shiny Apps with docker and dokku

Stargazers over time

Stargazers over time

IMPORTANT

This project is not an alternative Shiny Server. It exposes PORT 80 (not 3838) and is intented to serve only single shiny apps.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].