cammiechat/run.py
2024-09-26 20:52:45 +02:00

6 lines
142 B
Python
Executable file

#!/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)