Subversion Repositories SmartDukaan

Rev

Rev 4106 | Rev 5639 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4106 Rev 4198
Line 111... Line 111...
111
                (r"/(jquery-1.6.2.min\.js)", tornado.web.StaticFileHandler, dict(path=settings['static_path']))
111
                (r"/(jquery-1.6.2.min\.js)", tornado.web.StaticFileHandler, dict(path=settings['static_path']))
112
            ], **settings)
112
            ], **settings)
113
 
113
 
114
if __name__ == '__main__':
114
if __name__ == '__main__':
115
    http_server = tornado.httpserver.HTTPServer(application)
115
    http_server = tornado.httpserver.HTTPServer(application)
116
    http_server.listen(8889)
116
    http_server.listen(8888)
117
    tornado.ioloop.IOLoop.instance().start()
117
    tornado.ioloop.IOLoop.instance().start()
118
118