karangattu / shiny_helpdesk

Create issues for Shiny for Python and get AI responses on GitHub
MIT License
0 stars 0 forks source link

Shiny App does not load #52

Open karangattu opened 1 month ago

karangattu commented 1 month ago

When I try to run the app using python app.py, nothing happens in the terminal. Can you help me troubleshoot this?

github-actions[bot] commented 1 month ago

Please check if you see a message like "Listening on http://127.0.0.1:8000" in your terminal. If you don't see this message, you might be missing the following at the end of your app.py file:

if __name__ == "__main__":
    app.run()

(Note: This is an AI-generated response and may have errors. If the issue persists after adding this code, please provide your complete app code so we can better assist you.)