From 7a77de20e252e0c02d6c9179b23d568931998139 Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Wed, 12 Aug 2020 21:47:26 -0400 Subject: [PATCH] Configure for the server --- styx/settings.py | 40 ++++++++++++++++++++++++++++++---------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/styx/settings.py b/styx/settings.py index 0f2aca0..37af17a 100644 --- a/styx/settings.py +++ b/styx/settings.py @@ -11,6 +11,7 @@ https://docs.djangoproject.com/en/3.1/ref/settings/ """ from pathlib import Path +import os # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve(strict=True).parent.parent @@ -20,13 +21,21 @@ BASE_DIR = Path(__file__).resolve(strict=True).parent.parent # See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = 'mq@_9a6&y4nvgqa7obf-r%a4^dt)z=r8jr&91&=oc^6-=i0*$z' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True - -ALLOWED_HOSTS = [] - +DEBUG = (os.environ.get('STYX_DEBUG', 'true') == 'true') + +if DEBUG: + SECRET_KEY = 'mq@_9a6&y4nvgqa7obf-r%a4^dt)z=r8jr&91&=oc^6-=i0*$z' +else: + SECRET_KEY = os.environ['STYX_SECRET_KEY'] + +ALLOWED_HOSTS = [ + 'localhost', + 'www.localhost', + 'styx.blog', + '46.101.172.187', +] # Application definition @@ -73,12 +82,22 @@ WSGI_APPLICATION = 'styx.wsgi.application' # Database # https://docs.djangoproject.com/en/3.1/ref/settings/#databases -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', +if DEBUG: + DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } + } +else: + DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'styx', + 'USER': 'styxuser', + 'PASSWORD': os.environ['STYX_DB_PASSWORD'], + } } -} # Password validation @@ -118,3 +137,4 @@ USE_TZ = True # https://docs.djangoproject.com/en/3.1/howto/static-files/ STATIC_URL = '/static/' +STATIC_ROOT = os.path.join(BASE_DIR, 'static/') -- 2.20.1