I want to use a Flask app that routes to my Dash app

I don’t really know where to start.

Help?

I found this, looks promising:

DispatcherMiddleware is a good way to go if you have lots of Dash apps to combine into a single Flask app. You can also directly mount the Dash app at a particular route of your Flask server which might be easier, particularly if you just have one Dash app to integrate.

There’s lots of information about different possibilities in the docs.