From 428015ecf5e7bd09ea65b3f857bc91a5f0ac0d88 Mon Sep 17 00:00:00 2001 From: zakx <sg@unkreativ.org> Date: Mon, 10 Apr 2017 22:56:09 +0200 Subject: [PATCH] Adding reminder to remove pre-generated SECRET_KEY Later on, we'll need environment-based default configs anyway, so this will probably be done together. --- InvenTree/InvenTree/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index 8585f5b911..ab2205a296 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -20,6 +20,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! +# TODO: remove this SECRET_KEY = 'oc2z%5)lu#jsxi#wpg)700z@v48)2aa_yn(a(3qg!z!fw&tr9f' # SECURITY WARNING: don't run with debug turned on in production! @@ -40,7 +41,7 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', - + # InvenTree apps 'part.apps.PartConfig', 'project.apps.ProjectConfig',