mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
28 lines
No EOL
835 B
Python
Executable file
28 lines
No EOL
835 B
Python
Executable file
#!/usr/bin/env python
|
|
########################################
|
|
#
|
|
# alert-server - Alerta Server daemon
|
|
#
|
|
########################################
|
|
|
|
import os
|
|
import sys
|
|
|
|
possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
|
|
os.pardir,
|
|
os.pardir))
|
|
if os.path.exists(os.path.join(possible_topdir, 'alerta', '__init__.py')):
|
|
sys.path.insert(0, possible_topdir)
|
|
|
|
from alerta.common import config
|
|
from alerta.common import log as logging
|
|
from alerta.server.daemon import AlertaDaemon, Version
|
|
|
|
LOG = logging.getLogger('alerta.server')
|
|
CONF = config.CONF
|
|
|
|
if __name__ == '__main__':
|
|
config.parse_args(sys.argv[1:], version=Version)
|
|
logging.setup('alerta')
|
|
alerta = AlertaDaemon('alerta')
|
|
alerta.start() |