I'm developing an app on Python using flask and I'm getting this error while trying to deploy it to Heroku:
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
On the Heroku logs, I can see this line

Few possibilities that I have tried
In my Procfile I have written this
web: python hello-mysql.pyI have also tried
web: python hello-mysql.py runserver 0.0.0.0=$PORTReplace "web" with "worker" in your Procfile.
os.environ['PORT']instead of 5000. - Damien MATHIEU