diff options
author | coderick14 | 2017-05-16 17:37:05 +0530 |
---|---|---|
committer | coderick14 | 2017-05-16 17:37:05 +0530 |
commit | a59792761e13920bd59ba934af5b4a62a77f79c7 (patch) | |
tree | 7d10107e0c3a1d5c5a9a17b518f2b3629c70d95d /sbhs_server/settings.py | |
parent | 4336f5f06f61de30ae3fa54650fce63a9d5ef5be (diff) | |
download | SBHS-2018-Rpi-a59792761e13920bd59ba934af5b4a62a77f79c7.tar.gz SBHS-2018-Rpi-a59792761e13920bd59ba934af5b4a62a77f79c7.tar.bz2 SBHS-2018-Rpi-a59792761e13920bd59ba934af5b4a62a77f79c7.zip |
Set up django-server locally
Diffstat (limited to 'sbhs_server/settings.py')
-rw-r--r-- | sbhs_server/settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbhs_server/settings.py b/sbhs_server/settings.py index 30a0f81..4d9575f 100644 --- a/sbhs_server/settings.py +++ b/sbhs_server/settings.py @@ -21,10 +21,10 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__)) # See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! -SECRET_KEY = '' +SECRET_KEY = 'k8^&^wr-skvt1bw$7^9mp$ic^5iubco@=bz*@hljl+vz9-&&_p$$$deep' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = is_production +DEBUG = not is_production TEMPLATE_DEBUG = not is_production @@ -42,7 +42,7 @@ if not DEBUG: # Application definition INSTALLED_APPS = ( - 'django.contrib.admin', + #'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', |