-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.py
46 lines (35 loc) · 1.31 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import tornado.httpserver
import tornado.ioloop
import tornado.web
from tornado.options import define, options
ROOT = os.path.abspath(os.path.dirname(__file__))
define("port", default=8000, help="run on the given port", type=int)
define('settings', default=os.path.join(ROOT, 'settings.py'),
help='path to the settings file.', type=str)
from database import *
from settings import *
class Application(tornado.web.Application):
def __init__(self):
from urls import handlers, ui_modules
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
xsrf_cookies=True,
cookie_secret=cookie_secret,
ui_modules=ui_modules,
gzip=True,
debug=True)
execfile(options.settings, {}, settings)
super(Application, self).__init__(handlers, **settings)
tornado.web.Application.__init__(self, handlers, **settings)
self.db = db
def main():
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(Application())
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
if __name__ == "__main__":
main()