diff --git a/allianceauth/project_template/project_name/settings/base.py b/allianceauth/project_template/project_name/settings/base.py index 45889964..49d00c35 100644 --- a/allianceauth/project_template/project_name/settings/base.py +++ b/allianceauth/project_template/project_name/settings/base.py @@ -166,7 +166,6 @@ CACHES = { } } -SECRET_KEY = 'this is a very bad secret key you should change' DEBUG = True ALLOWED_HOSTS = ['*'] DATABASES = { @@ -235,5 +234,9 @@ LOGGING = { 'handlers': ['log_file', 'console'], 'level': 'ERROR', }, + 'esi': { + 'handlers': ['log_file', 'console'], + 'level': 'DEBUG', + }, } }