25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
204B

  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)