Navigate to folder of app.py and run
python index.py
The app is then available on http://localhost:8050/
Run from repo root
docker-compose up -d --build
The app is then available on http://localhost:8051/
Following this tutorial
https://www.datacamp.com/community/tutorials/learn-build-dash-python
and freestyling for additional functionality using the official Dash documentation, e.g. this
https://dash.plot.ly/live-updates
tutorial for CSS styling
https://www.youtube.com/watch?v=f2qUWgq7fb8
and using the following to add local CSS instead of from web (will be appended after vanilla dash css)
For multi-page stuff
putting in Docker container
Continue from this point in new project dash-multipage-app/ which is linked to github
adding interactive annotation by clicking graph
adding "navbar" (not full thing, just a simple link-based approximation), ability to read parameter values from url
converted /v4 to multipage app
included background image, transparent figure backgrounds, 404 page
Trying simple multipage stuff (two pages)
In v1 is a basic static dashboard showing two bar graphs on the same axes.
Also added a markdown example (handles a lot of text), presented a few paragraphs below simplest example in reference
adding scatter plot, automatic loading of the latest data to the app (not just at the time of app launch), and automatic updating of text to reflect time. Also adding interactive text box
Added a CSS style sheet
adding automatic interactivity between a dropdown and the app figure
adding proper styling via bootstrap css