-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathstartup.py
32 lines (26 loc) · 948 Bytes
/
startup.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
#!/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)