I have hosted my files on a remote flask server. Started the server using:
flask run --host= ...
In the python code inside app,
app.run(host='0.0.0.0')
The server starts without any issue but I am unable to access the page remotely.
I checked the ports as well. No problem there.