I just deployed an App but now under my App section I don't see my deployment. I would like to use the same domain to redeploy it

The link is https://av-attribution.streamlit.app/.
The github is GitHub - tonymin-av/attribution_reporting_site: A site running weekly and monthly to create AV Marketing teams Attribution Report Pages to allow company wide access to report and data visuals.
There is no error message. and unsure about Streamlit and Python Versions

If you’re creating a debugging post, please include the following info:

  1. Share the link to the public app (deployed on Community Cloud).
  2. Share the link to your app’s public GitHub repository (including a requirements file).
  3. Share the full text of the error message (not a screenshot).
  4. Share the Streamlit and Python versions.

Hey there, thanks for sharing your app link and GitHub repo! :balloon: Since you mentioned there’s no error message and you’re unsure about the Streamlit and Python versions, here’s what you can do to help the community help you:

  1. To check your Streamlit version, add this to your main script and redeploy:
import streamlit as st
st.write("Streamlit version:", st.__version__)
  1. For Python, you can print the version with:
import sys
st.write("Python version:", sys.version)
  1. Make sure your requirements.txt is up to date and includes all necessary packages. If you’re missing a requirements.txt, your app may not build correctly on Community Cloud. See the official docs for details.

If you’re experiencing issues but not seeing errors, check the “Manage App” logs in Streamlit Community Cloud for hidden errors or dependency issues. Also, ensure your local environment matches the cloud environment, especially for package versions and file paths, as explained in this guide.

Sources: