#Flask app wont work with port 0.0.0.0
1 messages · Page 1 of 1 (latest)
Project ID: 176ba294-2575-4688-9d63-fae15b879106
app.run(host="0.0.0.0")
app.run(host="0.0.0.0", port='5000')
tried these all doesnt work
ah shit it worked
sorry
you don't want to be using flasks in-built developer server, please reference this template https://github.com/alphasecio/flask/tree/main
you need to use gunicorn to run your flask app