Hey there, I’m new to Streamlit and I wonder myself how I can rename the app name that is shown in the “App view” section on the Streamlit “My profile” page. This name is really strange as it shows nowhere but in this view and if I message the link to my app within iMessage for example. This name has nothing to do with st.Title. Can you tell me how to rename (and finally where this name is coming from)?
I deleted the app in Streamlit and hosted it again under a new URL by using “Deploy a public app from GitHub”. The st.set_page_config(page_title=xxxx) as well as st.title("xxxxxxx”). What I’m really wondering about: It was added again and shows the old name in the Streamlit “My profile” view. (additonally I can’t reach it with my smartphone anymore which is really not what I’ve expected). It seems that the “hosting-magic” in the background is not working correctly for my app.
The log on my smartphone show [ UTC ] Log for xxxxxxx.streamlit.app/
and then it freezes.
Update_2:
I renamed the GitHub repo and Streamlit still is able to host my app and I’m able to load it. Why? I really don’t understand what’s going on in the background.
Update_3:
I do all the steps again and now everything is like it should be. Is it possible that the app name in Streamlit “My profile” is initially derived from “somewhere” but finally linked to the repo name.
Hey, maybe the app name you see in your Streamlit Cloud profile is not the same as your st.title() or filename. You can simply change the app name by following the below steps:
1. Rename your GitHub repository
* Go to your GitHub repo.
* Click setting-Repository name
* Change the name
* Streamlit Cloud will automatically reflect the name after some time.