xppl/run.py

5 lines
143 B
Python
Raw Normal View History

2018-05-20 00:10:01 +02:00
#! /usr/bin/env python
2018-06-03 12:29:08 +02:00
from app import app, socketio
2018-06-10 12:15:07 +02:00
socketio.run(app,host="0.0.0.0", port=8080)
2018-06-03 12:29:08 +02:00
#app.run(debug=True,host="0.0.0.0",port=8080)