I am trying to figure out how to organise a dash project with multiple apps. All examples are single page apps and I want to have multiple dashes organised as one project to run by gunicorn (inside a docker container):
dash-project/
app1/
layout.py
data.py
app2/
layout.py
data.py
run.py( or run.sh)
Is this a right way to go? What should be inside run.py or run.sh, if anything? How do I use gunicorn to serve multiple apps?