加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
startup.py 948 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019/1/28 11:00
# @Author : Fred Yang
# @File : startup.py
# @Role : 启动脚本
import fire
from tornado.options import define
from websdk.program import MainProgram
from settings import settings as app_settings
from biz.application import Application as MyApp
from biz.crontab_app import Application as CronApp
define("service", default='alert', help="start service flag", type=str)
class MyProgram(MainProgram):
def __init__(self, service='mg_api', progressid=''):
self.__app = None
settings = app_settings
if service == 'tools':
self.__app = MyApp(**settings)
elif service == 'cron_jobs':
### 日志查看、报警 都是定时
self.__app = CronApp(**settings)
super(MyProgram, self).__init__(progressid)
self.__app.start_server()
if __name__ == '__main__':
fire.Fire(MyProgram)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化