├── .gitignore ├── Dockerfile ├── README.md ├── app ├── app.py ├── assets │ └── logo.png └── gdp-life-exp-2007.csv └── application.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/app/app.py -------------------------------------------------------------------------------- /app/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/app/assets/logo.png -------------------------------------------------------------------------------- /app/gdp-life-exp-2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/app/gdp-life-exp-2007.csv -------------------------------------------------------------------------------- /application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openanalytics/shinyproxy-dash-demo/HEAD/application.yml --------------------------------------------------------------------------------