7 lines
142 B
Python
7 lines
142 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from chat import app
|
||
|
from chat import socketio
|
||
|
|
||
|
socketio.run(app,port=3000,host='0.0.0.0',allow_unsafe_werkzeug=True)
|