console/cloud-runserver.py

8 lines
146 B
Python
Raw Permalink Normal View History

2016-04-02 08:33:34 +03:00
#!/usr/bin/env python
2015-11-26 23:49:41 +03:00
# coding: utf-8
2016-06-12 01:34:09 +03:00
from SWSCloudWeb import app
2015-11-26 23:49:41 +03:00
if __name__ == '__main__':
2016-05-16 09:24:27 +03:00
app.run(host='0.0.0.0', port=5000, debug=True)