mirror of
https://github.com/alerta/alerta.git
synced 2025-01-24 17:29:39 +00:00
6 lines
185 B
Python
6 lines
185 B
Python
#!/usr/bin/env python
|
|
from alerta import create_app
|
|
|
|
activate_this = '/opt/alerta/bin/activate_this.py'
|
|
execfile(activate_this, dict(__file__=activate_this))
|
|
application = create_app()
|