My streamlit is running properly on local but not on streamlit cloud

I have this folder structure:
image
The instabot is the open source module i made some changes and use here.
app.py is the streamlit applications.
The app is running good in local machine. But while on streamlit cloud it doesnot throw any error logs and also i do not obtained my desired results
Below images for reference:
This is in Local:

This is on streamlit cloud:

Any suggestions and guidances are welcomed and appreciated :slight_smile: Thank You

Seems instabot is starting a server on 0.0.0.0 port 8090 which probably isn’t allowed (a routable IP address) in Streamlit cloud, but is on your local machine.

can you please enlighten me here?

The fly.toml file has clues about a private server and its host/port config. You’ll have to find out more about instabot works. I am not familiar with it at all. I just know that st cloud won’t play ball with private servers run on localhost.