I am deploying a streamlit app to a read-only folder (due to certain restrictions in how the environment is set). any other folders above that folder are writable, just the www/root one where the streamlit app is deployed is read-only.
This means that I need to find a way to create .streamlit folder somewhere else.
Are there any settings that I can do from app.py to make this happen?
Also, the url the exposes this app is configured through reverse proxy because the env I am in does not have direct connection to the internet. I think that is why I am geeting the error: “Did not auto detect external IP”
the external URL is not displayed as well. I tried setting “–server.headless=false” in the startup command but that didn’t work.