diff options
Diffstat (limited to 'run_mach2.py')
-rw-r--r-- | run_mach2.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/run_mach2.py b/run_mach2.py new file mode 100644 index 0000000..4c12f2b --- /dev/null +++ b/run_mach2.py @@ -0,0 +1,7 @@ +from gevent import monkey +monkey.patch_all() +from gevent.wsgi import WSGIServer +from mach2 import app + +http_server = WSGIServer(('', 5000), app) +http_server.serve_forever() |