My app has been stuck showing “This will take just a sec! Your app is waking up!” for over an hour. I deleted the old app and created a fresh deployment but it is still stuck.
I believe this is a WebSocket/routing issue on Streamlit Cloud’s side after multiple rapid deploys earlier today. Could you please clear the build cache or restart the routing for this app?
Hey there, thanks for sharing your question and all the details!
You’re not alone—many folks have run into the “Your app is waking up!” or “in the oven” issue on Streamlit Community Cloud, even after deleting and redeploying the app. This usually points to a deployment, routing, or platform issue, not your code. Official docs and community reports recommend first rebooting your app from your workspace or Cloud logs, which forces a fresh build and often resolves temporary glitches. If that doesn’t work, deleting and redeploying (which you’ve already tried) is the next step. Sometimes, these issues are on Streamlit’s backend and resolve themselves after a while or after a platform update.
Unfortunately, there’s no user-accessible way to clear the build cache or reset routing beyond rebooting or redeploying. If the problem persists after these steps, it’s likely a temporary infrastructure issue or a backend routing/cache problem that only Streamlit support can resolve. You can monitor the Streamlit forums for outage reports or submit a support case as described in the official deployment troubleshooting docs. If you’re still stuck, please share a minimum reproducible example and your requirements.txt so the community can help debug further! Community members, feel free to jump in with your insights or similar experiences.
Sources:
Hi,
When i enter you app link i get : You do not have access to this app or it does not exist
However two problems in your repo :
-
numpy missing from requirements.txt : add numpy>=1.24.0
-
st.set_page_config() in every pages/*.py file : remove it from all pages keep only in app.py
-
Duplicate root-level .py files → delete : 2_Day2…py and 3_Day3…py at root
Fixed requirements:
streamlit>=1.32.0
pandas>=2.0.0
numpy>=1.24.0
requests>=2.31.0
lxml==4.9.3