Skip to content
Snippets Groups Projects
Select Git revision
  • 0ce3be9faab3ba72180267324e04524c2ca09933
  • master default protected
  • quickstart
  • inheritance-v2
  • staging-playground
  • staging-test
  • voevent_fixes
  • hw-inj
  • py310
  • fs-fix
  • free-name-GWs
  • no-massgap-voevent
  • send-async-alerts
  • superevent-log-inheritance
  • response-then-logs
  • catalog-dev
  • alert-improvements
  • histogram
  • S_event_neighbours
  • no_massgap_voevent
  • new_event_superevent_types
  • gracedb-2.18.1
  • gracedb-2.18.0
  • gracedb-2.17.2
  • gracedb-2.17.1
  • gracedb-2.17.0
  • gracedb-2.16.3
  • gracedb-2.16.2
  • gracedb-2.16.1
  • gracedb-2.16.0
  • gracedb-2.15.0
  • gracedb-2.14.3
  • gracedb-2.14.1
  • gracedb-2.14.0
  • gracedb-2.13.0-2
  • gracedb-2.13.0-1
  • gracedb-2.13.0
  • gracedb-2.12.0
  • gracedb-2.12.1
  • gracedb-2.11.1-2
  • gracedb-2.11.1-1
41 results

views.py

Blame
  • Forked from IGWN Computing and Software / GraceDB / GraceDB Server
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    branson.py 1.42 KiB
    
    CONFIG_NAME = "Branson"
    
    DEBUG = True
    TEMPLATE_DEBUG = DEBUG
    
    DATABASES = {
        'default' : {
            'NAME'     : 'branson',
            'ENGINE'   : 'django.db.backends.mysql',
            'USER'     : 'branson',
            'PASSWORD' : 'thinglet',
        }
    }
    
    
    ALERT_EMAIL_FROM = "Dev Alert <root@moe.phys.uwm.edu>"
    ALERT_EMAIL_TO = [
        "Branson Stephens <branson@gravity.phys.uwm.edu>",
        ]
    ALERT_EMAIL_BCC = ["branson@gravity.phys.uwm.edu"]
    
    ALERT_TEST_EMAIL_FROM = "Dev Test Alert <root@moe.phys.uwm.edu>"
    ALERT_TEST_EMAIL_TO = [
        "Branson Stephens <branson@gravity.phys.uwm.edu>",
        ]
    
    # Don't sent out non-test XMPP alerts on dev box!
    XMPP_ALERT_CHANNELS = [
                            'test_omega',
                            'test_mbtaonline',
                            'test_cwb',
                            'test_lowmass',
                          ]
     
    # SkyAlert
    SKYALERT_IVORN_PATTERN = "ivo://ligo.org/gracedb#%s-dev"
    
    # Latency histograms.  Where they go and max latency to bin.
    LATENCY_REPORT_DEST_DIR = "/home/branson/data/latency"
    LATENCY_REPORT_WEB_PAGE_FILE_PATH = LATENCY_REPORT_DEST_DIR + "/latency.inc"
    
    # Uptime reporting
    UPTIME_REPORT_DIR = "/homebransonbmoe/data/uptime"
    
    
    SITE_ID = 4
    
    TEMPLATE_DIRS = (
        # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
        # Always use forward slashes, even on Windows.
        # Don't forget to use absolute paths, not relative paths.
        "/home/branson/gracedbdev/templates",
    )