加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
blackstrom 提交于 2015-11-11 00:43 . add code
import os.path
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define,options
from mydb import TornaDB
from urls import urls
import cfg
from tool import UUID
define("port", default=8081, help="run on the given port", type=int)
class Application(tornado.web.Application):
def __init__(self):
handlers = urls
settings = dict(
template_path = os.path.join(os.path.dirname(__file__), "templates"),
static_path = os.path.join(os.path.dirname(__file__), "static"),
blog_title = u"我的博客",
cookie_secret = UUID.get_uuid(),
login_url = "/signin",
debug = options.debug,
autoescape=None,
compress_whitespace=False,
)
tornado.web.Application.__init__(self, handlers, **settings)
self.db = TornaDB.Connection(host=options.db_host,
port=options.db_port,
database=options.db_database,
user=options.db_user,
password=options.db_pass
)
if __name__ == "__main__":
cfg.set_define()
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(Application())
http_server.listen(options.port)
tornado.ioloop.IOLoop.current().start()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化