forked from qd-today/qd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.py
41 lines (32 loc) · 1.07 KB
/
web.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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<[email protected]>
# http://binux.me
# Created on 2014-07-30 12:38:34
import sys
from tornado.httpserver import HTTPServer
from tornado.ioloop import IOLoop
import config
from db import DB
from libs.log import Log
from web.app import Application
if __name__ == "__main__":
# init logging
logger_Web = Log('QD.Web').getlogger()
if not config.debug:
import logging
import tornado.log
channel = logging.StreamHandler(sys.stderr)
channel.setFormatter(tornado.log.LogFormatter())
channel.setLevel(logging.WARNING)
logger_Web.addHandler(channel)
if len(sys.argv) > 2 and sys.argv[1] == '-p' and sys.argv[2].isdigit():
port = int(sys.argv[2])
else:
port = config.port
http_server = HTTPServer(Application(DB()), xheaders=True)
http_server.bind(port, config.bind)
http_server.start()
logger_Web.info("http server started on %s:%s", config.bind, port)
IOLoop.instance().start()