slitaz-forge view bugs/roundup.wsgi @ rev 249

tank: directly use real name
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 07 23:18:19 2012 +0200 (2012-04-07)
parents
children
line source
1 #!/usr/bin/python
3 from wsgiref.simple_server import make_server
5 # obtain the WSGI request dispatcher
6 from roundup.cgi.wsgi_handler import RequestDispatcher
7 tracker_home = '/home/slitaz/bugs'
8 app = RequestDispatcher(tracker_home)
10 httpd = make_server('', 8917, app)
11 httpd.serve_forever()