Skip to content
Snippets Groups Projects
Select Git revision
  • f2c7f8830b604de9a86af359e5ff260670e7d4cb
  • master default protected
  • gracedb-2.32.0
  • staging-test
  • bootstrap-5
  • kill-lvem
  • staging-playground
  • threaded-followup
  • er16-and-split-O4
  • fast-get-objects-for-user
  • py310
  • api-v2
  • query-investigation
  • gracedb-2.22.0-1
  • query-improvements
  • gwtc-labels
  • gracedb-2.21.8-1
  • voevent_fixes
  • refresh-logs
  • gracedb-2.21.3-1
  • inheritance-v2
  • gracedb-2.31.3
  • gracedb-2.31.2
  • gracedb-2.31.1
  • gracedb-2.31.0
  • gracedb-2.30.0-1
  • gracedb-2.30.0
  • gracedb-2.29.0
  • gracedb-2.28.2
  • gracedb-2.28.1
  • gracedb-2.28.0
  • gracedb-2.27.2
  • gracedb-2.27.1
  • gracedb-2.27.0
  • gracedb-2.26.0
  • gracedb-2.25.0
  • gracedb-2.24.0
  • gracedb-2.23.2
  • gracedb-2.23.1
  • gracedb-2.23.0
  • gracedb-2.22.0-1
41 results

base.html

Blame
  • 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",
    )