1
0
Fork 0
mirror of https://github.com/fastogt/fastocloud_admin.git synced 2025-03-09 23:38:52 +00:00
This commit is contained in:
topilski 2019-06-09 00:12:54 -04:00
parent 8834e927eb
commit 73181495bc

View file

@ -48,15 +48,15 @@ def init_project(static_folder, *args):
# socketio
@socketio.on('connect')
def connect():
print('Client connected')
pass
@socketio.on('disconnect')
def disconnect():
print('Client disconnected')
pass
# defaults flask
_host = '127.0.0.1'
_port = 5000
_host = '0.0.0.0'
_port = 8080
server_name = app.config.get('SERVER_NAME_FOR_POST')
sn_host, sn_port = None, None