You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 line
205B

  1. #!/usr/bin/env python
  2. from modules import socketio, app, cbpi
  3. try:
  4. port = int(cbpi.get_config_parameter('port', '5000'))
  5. except ValueError:
  6. port = 5000
  7. socketio.run(app, host='0.0.0.0', port=port)