├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── apt-packages ├── assets ├── Intelligent-Solutions-icon.png ├── spinner.gif └── wiley.png ├── auth.py ├── boilerplate2-diagram.gif ├── boilerplate2_screenshot.png ├── config.py ├── loading.py ├── reports └── empty.txt ├── requirements.txt ├── runtime.txt ├── search.py ├── slogger.py └── tasks.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/app.py -------------------------------------------------------------------------------- /apt-packages: -------------------------------------------------------------------------------- 1 | redis-tools 2 | -------------------------------------------------------------------------------- /assets/Intelligent-Solutions-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/assets/Intelligent-Solutions-icon.png -------------------------------------------------------------------------------- /assets/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/assets/spinner.gif -------------------------------------------------------------------------------- /assets/wiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/assets/wiley.png -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/auth.py -------------------------------------------------------------------------------- /boilerplate2-diagram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/boilerplate2-diagram.gif -------------------------------------------------------------------------------- /boilerplate2_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/boilerplate2_screenshot.png -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/config.py -------------------------------------------------------------------------------- /loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/loading.py -------------------------------------------------------------------------------- /reports/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/reports/empty.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.6 2 | -------------------------------------------------------------------------------- /search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/search.py -------------------------------------------------------------------------------- /slogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/slogger.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WileyIntelligentSolutions/wiley-dash-boilerplate2/HEAD/tasks.py --------------------------------------------------------------------------------