Skip to content
Snippets Groups Projects
production.py 646 B
Newer Older
# Settings for a production GraceDB instance running on a VM with Puppet
# provisioning. Starts with vm.py settings (which inherits from base.py
# settings) and overrides or adds to them.
# LVAlert Overseer settings
LVALERT_OVERSEER_INSTANCES = [
    {
        "lvalert_server": "lvalert.cgca.uwm.edu",
        "listen_port": 8000,
    },
]

# Turn on alerts
SEND_XMPP_ALERTS = True
SEND_PHONE_ALERTS = True
SEND_EMAIL_ALERTS = True

# Safety check on debug mode for production
if (DEBUG == True):
    raise RuntimeError("Turn off debug mode for production")