X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=blobdiff_plain;f=htsworkflow%2Fsettings.py;h=b44a5884eda96acb4b9687b630f8197acd40e396;hp=c7b7dfb6670dd8cb0d63661e696155bcc536cebd;hb=f201c5c84942afe8766e8c51df771bcf46009f4a;hpb=ec4e036be782992beca4d05c641ce566ac192b28 diff --git a/htsworkflow/settings.py b/htsworkflow/settings.py index c7b7dfb..b44a588 100644 --- a/htsworkflow/settings.py +++ b/htsworkflow/settings.py @@ -22,13 +22,13 @@ SECRET_KEY = 'c=5&609$7)bm_u+3$2bi=ida$*a)c1(cp_0siua7uyww!1qfg_' DEFAULT_API_KEY = 'n7HsXGHIi0vp9j5u4TIRJyqAlXYc4wrH' # SECURITY WARNING: don't run with debug turned on in production! +# Override in settings_local DEBUG = True TEMPLATE_DEBUG = True ALLOWED_HOSTS = ['jumpgate.caltech.edu'] - # Application definition AUTHENTICATION_BACKENDS = ( 'htsworkflow.frontend.samples.auth_backend.HTSUserModelBackend', ) @@ -67,7 +67,7 @@ TEMPLATE_DIRS = ( ROOT_URLCONF = 'htsworkflow.frontend.urls' -WSGI_APPLICATION = 'htsworkflow.wsgi.application' +WSGI_APPLICATION = 'wsgi.application' # Database # https://docs.djangoproject.com/en/1.6/ref/settings/#databases @@ -79,6 +79,8 @@ DATABASES = { } } +EMAIL_HOST = 'localhost' + # Internationalization # https://docs.djangoproject.com/en/1.6/topics/i18n/