├── .gitignore ├── Procfile ├── README.md ├── app.py ├── home.py ├── index.py ├── navbar.py ├── page_2.py ├── page_3.py ├── requirements.txt └── settings.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn index:server -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/app.py -------------------------------------------------------------------------------- /home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/home.py -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/index.py -------------------------------------------------------------------------------- /navbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/navbar.py -------------------------------------------------------------------------------- /page_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/page_2.py -------------------------------------------------------------------------------- /page_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/page_3.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmanus-git/Plotly-Dash-Pages-Template/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- 1 | # https://stackoverflow.com/questions/24565799/deploying-to-heroku-with-anaconda 2 | ALLOWED_HOSTS = ['*'] 3 | --------------------------------------------------------------------------------