e-org-extra-server/public_html/run.py

6 lines
114 B
Python
Raw Normal View History

#!/usr/bin/env python
2016-08-12 13:02:40 -07:00
2016-07-04 14:58:44 -07:00
# Run a test server.
from extra import app
2016-08-12 13:00:13 -07:00
app.run(host='0.0.0.0', port=8080, debug=False)