Set myself as a Django admin, so I get emails about production server errors

This commit is contained in:
Danielle McLean 2018-04-26 10:27:11 +10:00
parent 092cd5ca18
commit 1d079abd19
Signed by: 00dani
GPG Key ID: 8EB789DDF3ABD240
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,10 @@ https://docs.djangoproject.com/en/1.11/ref/settings/
from os import path
ADMINS = [
('dani', 'dani@00dani.me'),
]
BASE_DIR = path.dirname(path.dirname(path.dirname(path.abspath(__file__))))