forked from opendevops-cn/codo-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstartup.py
32 lines (26 loc) · 867 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-*-
"""
author : shenshuo
date : 2017年11月14日20:11:27
role : 启动程序
"""
import fire
from tornado.options import define
from websdk.program import MainProgram
from settings import settings as app_settings
from mg.applications import Application as MgApp
from mg.subscribe import RedisSubscriber as SubApp
define("service", default='api', help="start service flag", type=str)
class MyProgram(MainProgram):
def __init__(self, service='mg_api', progressid=''):
self.__app = None
settings = app_settings
if service == 'mg':
self.__app = MgApp(**settings)
elif service == 'sub_log':
self.__app = SubApp(**settings)
super(MyProgram, self).__init__(progressid)
self.__app.start_server()
if __name__ == '__main__':
fire.Fire(MyProgram)