├── .gitignore ├── Dockerfile ├── Dockerrun.aws.json ├── LICENSE ├── README.md ├── conf └── shiny-server.conf ├── dependencies └── rCharts │ └── master.tar.gz ├── docker-compose.yml ├── pre-conf.sh ├── shiny-server.sh ├── shiny-server ├── app │ └── index.Rmd ├── data.R ├── global.R ├── log │ ├── messages │ ├── shiny-server.log │ └── syslog ├── server.R ├── ui.R └── www │ ├── button.css │ ├── favicon.ico │ └── share.css └── startup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .Rhistory 3 | *.zip 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerrun.aws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/Dockerrun.aws.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /conf/shiny-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/conf/shiny-server.conf -------------------------------------------------------------------------------- /dependencies/rCharts/master.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/dependencies/rCharts/master.tar.gz -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pre-conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/pre-conf.sh -------------------------------------------------------------------------------- /shiny-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server.sh -------------------------------------------------------------------------------- /shiny-server/app/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/app/index.Rmd -------------------------------------------------------------------------------- /shiny-server/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/data.R -------------------------------------------------------------------------------- /shiny-server/global.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shiny-server/log/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/log/messages -------------------------------------------------------------------------------- /shiny-server/log/shiny-server.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/log/shiny-server.log -------------------------------------------------------------------------------- /shiny-server/log/syslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/log/syslog -------------------------------------------------------------------------------- /shiny-server/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/server.R -------------------------------------------------------------------------------- /shiny-server/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/ui.R -------------------------------------------------------------------------------- /shiny-server/www/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/www/button.css -------------------------------------------------------------------------------- /shiny-server/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/shiny-server/www/favicon.ico -------------------------------------------------------------------------------- /shiny-server/www/share.css: -------------------------------------------------------------------------------- 1 | .share { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/old-diversity-dashboard/HEAD/startup.sh --------------------------------------------------------------------------------