From c7bb67fac085cdcfff4dbebde5916ccc00f73529 Mon Sep 17 00:00:00 2001 From: Dece Date: Sat, 7 Mar 2020 17:02:40 +0100 Subject: [PATCH] Clean common settings file --- idre/settings_common.py | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/idre/settings_common.py b/idre/settings_common.py index 6f2e462..ee475e5 100644 --- a/idre/settings_common.py +++ b/idre/settings_common.py @@ -6,13 +6,9 @@ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(__file__)) -DEBUG = False - -SECRET_KEY = '' - ALLOWED_HOSTS = ['idre.xyz'] -ADMINS = ( ('Shgck', 'shgck@pistache.land'), ) +ADMINS = ( ('Dece', 'shgck@pistache.land'), ) # Application definition @@ -51,7 +47,7 @@ WSGI_APPLICATION = 'idre.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', - 'NAME': 'idre', + 'NAME': '', 'HOST': '', 'PORT': '5432', 'USER': '', @@ -96,8 +92,3 @@ TEMPLATES = [{ ] } }] - - -# Misc options - -APPEND_SLASH = True