| Total Complexity | 0 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # This should be used for development/debugging purposes only |
||
| 2 | # Use a proper WSGI server for production use |
||
| 3 | |||
| 4 | from chaoswg import app |
||
| 5 | |||
| 6 | if __name__ == '__main__': |
||
| 7 | app.run(host='127.0.0.1', port=5000, debug=True) |
||
| 8 |