-
Hi There, fletapp='My 1st Browser based Flet App' Will this variable value be shared among completely different browser sessions (and also get overwritten) ? I am using gunicorn (uvicorn) and calling with the following syntax... app.mount('/', flet.fastapi.app(main)) === Can someone please clarify? Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
you can pass environment variable at startup time. By design nothing is shared among workers until the preload setting is used. |
Beta Was this translation helpful? Give feedback.
-
Thank you. I disabled the global function (although it was updating flet's button value). |
Beta Was this translation helpful? Give feedback.
you can pass environment variable at startup time. By design nothing is shared among workers until the preload setting is used.