Not able to see the webview for my application

*I am not able to see my webview for my application. It always asks me to got to http://127.0.0.1:5000/ to see my application but I want to see the webview for it and ultimately deploy it as a web application with a public url. Please help

Repl link/Link to where the bug appears:https://replit.com/@sahasamirit/mdapp3a

Screenshots, links, or other helpful context:

code snippet

You must start the server on the host 0.0.0.0 in order for webview to be displayed.

2 Likes

Adding on to @KAlexK here, flask’s debug mode is known to cause issues on Replit, you should remove the debug=True from your code.

3 Likes