]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - www/webapp.py
Initial checkin.
[people/shoehn/ipfire.org.git] / www / webapp.py
CommitLineData
81675874 1#!/usr/bin/python2.6
2
3import tornado.httpserver
4import tornado.ioloop
5
6from webapp import Application
7application = Application()
8
9if __name__ == "__main__":
10 http_server = tornado.httpserver.HTTPServer(application)
11 http_server.listen(8080)
12 tornado.ioloop.IOLoop.instance().start()