OpenRCT2 Twitch Server
- Python 3.6 or above
- flask
- gevent
- requests
- websocket-client
- redis
$ pip3 install -r requirements.txt
$ python3 openrct2_twitch_server.py -H 0.0.0.0 -p 8000
$ gunicorn -b 0.0.0.0:8000 openrct2_twitch_server:app
Apache's mod_wsgi is not supported due to gevent spawn compatibility issue.
Use mod_proxy to proxy requests to WSGI server such as gunicorn. Using development server is strongly discouraged.