xppl/run.py

5 lines
128 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-08 16:15:09 +02:00
socketio.run(app, port=8080)
2018-06-03 12:29:08 +02:00
#app.run(debug=True,host="0.0.0.0",port=8080)