Browse Source

Enable instrumentation by default in WSGI and ASGI examples

pull/1430/head
Miguel Grinberg 3 months ago
parent
commit
269332da80
Failed to extract signature
  1. 12
      examples/server/asgi/app.py
  2. 12
      examples/server/wsgi/app.py

12
examples/server/asgi/app.py

@ -2,7 +2,7 @@
# set instrument to `True` to accept connections from the official Socket.IO
# Admin UI hosted at https://admin.socket.io
instrument = False
instrument = True
admin_login = {
'username': 'admin',
'password': 'python', # change this to a strong secret for production use!
@ -93,4 +93,14 @@ def test_disconnect(sid, reason):
if __name__ == '__main__':
if instrument:
print('The server is instrumented for remote administration.')
print(
'Use the official Socket.IO Admin UI at https://admin.socket.io '
'with the following connection details:'
)
print(' - Server URL: http://localhost:5000')
print(' - Username:', admin_login['username'])
print(' - Password:', admin_login['password'])
print('')
uvicorn.run(app, host='127.0.0.1', port=5000)

12
examples/server/wsgi/app.py

@ -5,7 +5,7 @@ async_mode = None
# set instrument to `True` to accept connections from the official Socket.IO
# Admin UI hosted at https://admin.socket.io
instrument = False
instrument = True
admin_login = {
'username': 'admin',
'password': 'python', # change this to a strong secret for production use!
@ -99,6 +99,16 @@ def disconnect(sid, reason):
if __name__ == '__main__':
if instrument:
print('The server is instrumented for remote administration.')
print(
'Use the official Socket.IO Admin UI at https://admin.socket.io '
'with the following connection details:'
)
print(' - Server URL: http://localhost:5000')
print(' - Username:', admin_login['username'])
print(' - Password:', admin_login['password'])
print('')
if sio.async_mode == 'threading':
# deploy with Werkzeug
app.run(threaded=True)

Loading…
Cancel
Save