The logs showing that the deployment is successful but i am not getting a success status
Hi,
I’ve replied to the ticket you also opened. Let’s keep the conversation in one place (on the ticket).
All repeat my reply here:
Your deploy logs show you are starting the web server on
127.0.0.1:5000
. Render requires0.0.0.0
, more in the docs: https://docs.render.com/web-services#port-binding. Because you’re not using0.0.0.0
, your deploys are timing out.Your deploy logs also show:
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
gunicorn
is commonly used as a production Python WSGI server, as we do in our basic Flask guide: https://docs.render.com/deploy-flask
Alan
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.