mirror of https://github.com/jumpserver/jumpserver
26 lines
488 B
Python
26 lines
488 B
Python
from ..hands import *
|
|
from .base import BaseService
|
|
|
|
__all__ = ['DaphneService']
|
|
|
|
|
|
class DaphneService(BaseService):
|
|
|
|
def __init__(self, **kwargs):
|
|
super().__init__(**kwargs)
|
|
|
|
@property
|
|
def cmd(self):
|
|
print("\n- Start Daphne ASGI WS Server")
|
|
|
|
cmd = [
|
|
'daphne', 'jumpserver.asgi:application',
|
|
'-b', HTTP_HOST,
|
|
'-p', str(WS_PORT),
|
|
]
|
|
return cmd
|
|
|
|
@property
|
|
def cwd(self):
|
|
return APPS_DIR
|