Python heroku configure procfile gunicorn + gevent for socket.io chat app | RuntimeError: You need to use the gevent-websocket server
问题 I have a working chat app on localhost, but it does not work on heroku (Question from yesterday). After some research I think the problem is how I start the app. Procfile currently: web: gunicorn adult_main:app I need to use gevent in combination with gunicorn . This way I should be able to have max. 1000 socket.io connections, which is enough for me for the moment. I already installed and added gevent to the requirements.txt . Here an extract of the file: Flask-SocketIO==2.9.6 gunicorn==19.7