"The runserver_socketio management command is provided which will run gevent’s pywsgi server which is required for supporting the type of long-running request a WebSocket will use:"
$ python manage.py runserver_socketio host:port
However, running manage.py runserver_socketio --help shows the command does not accept any host:port argument, and that these values appear to be hard-coded to 127.0.0.1 and 9000.
The docs specify:
"The runserver_socketio management command is provided which will run gevent’s pywsgi server which is required for supporting the type of long-running request a WebSocket will use:"
However, running
manage.py runserver_socketio --help
shows the command does not accept any host:port argument, and that these values appear to be hard-coded to 127.0.0.1 and 9000.