Add badges to rule status
[flowspy] / run_poller.py
1 #!/usr/bin/python
2 from gevent.wsgi import WSGIServer
3 from poller.application import application
4 server="localhost"
5 port=8081
6 print 'Serving on port %s...' % port
7 WSGIServer((server,port ), application).serve_forever()