This is a simple application that serves tasty WebSockets to your users with Flask, Flask-Sockets, Gevent, and Gunicorn.
Check out the live demo or read the docs.
- To set the
origin
url from theheroku-examples
repo to mine, I rangit remote set-url origin <MY_URL>
- To see what apps were running in Heroku I ran
heroku _
. I saw that I needed to create a new app for this websockets chat platform, and I ranheroku create
. Once I had the app name from that heroku create process, I ranheroku addons:create heroku-redis:hobby-dev
which added a Redis db to my app.
Some links I referred to while making this