-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #687 from geekygirlsarah/add-error-reporting
Add error reporting
- Loading branch information
Showing
1 changed file
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,11 @@ | |
For the full list of settings and their values, see | ||
https://docs.djangoproject.com/en/3.1/ref/settings/ | ||
""" | ||
|
||
from pathlib import Path | ||
import os | ||
import dj_database_url | ||
import django_on_heroku | ||
|
||
|
||
# Build paths inside the project like this: BASE_DIR / 'subdir'. | ||
BASE_DIR = Path(__file__).resolve().parent.parent | ||
|
||
|
@@ -33,7 +31,7 @@ | |
# redirect all http requests to https in non debugging envs | ||
SECURE_SSL_REDIRECT = not DEBUG | ||
|
||
ALLOWED_HOSTS = [ "*" ] | ||
ALLOWED_HOSTS = ["*"] | ||
|
||
# Application definition | ||
|
||
|
@@ -55,7 +53,8 @@ | |
'django.middleware.csrf.CsrfViewMiddleware', | ||
'django.contrib.auth.middleware.AuthenticationMiddleware', | ||
'django.contrib.messages.middleware.MessageMiddleware', | ||
'django.middleware.clickjacking.XFrameOptionsMiddleware' | ||
'django.middleware.clickjacking.XFrameOptionsMiddleware', | ||
'django.middleware.common.BrokenLinkEmailsMiddleware' | ||
] | ||
|
||
ROOT_URLCONF = 'codethesaurus.urls' | ||
|
@@ -147,5 +146,36 @@ | |
os.path.join(BASE_DIR, 'static'), | ||
] | ||
|
||
# For server error reporting | ||
# Admin emails are stored like Name1:[email protected],Name2:[email protected],... | ||
# Parse that first then set the rest | ||
ADMIN_STRING = os.getenv('ADMINS', '') | ||
ADMIN_SPLIT = ADMIN_STRING.split(",") # gives us name/value list | ||
ADMINS = [] | ||
for item in ADMIN_SPLIT: | ||
if item == "": | ||
break | ||
contact = item.split(":") | ||
ADMINS.append((contact[0], contact[1])) | ||
EMAIL_HOST = os.getenv('EMAIL_HOST', '') | ||
EMAIL_HOST_USER = os.getenv('EMAIL_HOST_USER', '') | ||
EMAIL_HOST_PASSWORD = os.getenv('EMAIL_HOST_PASSWORD', '') | ||
SERVER_EMAIL = os.getenv('SERVER_EMAIL', '') | ||
EMAIL_USE_SSL = os.getenv('EMAIL_USE_SSL', '') | ||
EMAIL_PORT = os.getenv('EMAIL_PORT', '') | ||
EMAIL_USE_TLS = os.getenv('EMAIL_USE_TLS', '') | ||
|
||
LOGGING = { | ||
"version": 1, # the dictConfig format version | ||
"disable_existing_loggers": False, # retain the default loggers | ||
"handlers": { | ||
"mail_admins": { | ||
"level": "ERROR", | ||
"class": "django.utils.log.AdminEmailHandler", | ||
"include_html": True, | ||
}, | ||
} | ||
} | ||
|
||
# Configure Django App for Heroku. | ||
django_on_heroku.settings(locals(), test_runner=False, databases=False, staticfiles=True, logging=True) |