Flask
I want to deploy my marimo dashboard in to our existing flask application. I can see example for integration with FASTAPI but the similar logic is not working for flask since it does not support .mount method. Is there any provision to integrate marimo dashboard in flask application.?
2 Replies
Does flask support ASGI? If not, then not sure a good way besides iframing.
I believe it supports ASGI here is the link for it https://flask.palletsprojects.com/en/2.3.x/deploying/asgi/
flask itself is a WSGI and we can convert it in ASGI. what should be the next step for it