From 48991728ba324efe2f3ee30e764c6664cc1ee58d Mon Sep 17 00:00:00 2001 From: Tris Date: Wed, 9 Sep 2020 19:04:29 +1000 Subject: [PATCH] Removed local settings --- polyphonic/settings_default.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/polyphonic/settings_default.py b/polyphonic/settings_default.py index 2d86a0b..e96084e 100644 --- a/polyphonic/settings_default.py +++ b/polyphonic/settings_default.py @@ -20,12 +20,12 @@ BASE_DIR = Path(__file__).resolve().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 = '6y#33930^6@c762u(@6+&#_qx8eu^e8q+4t-(@m60vnjw37k26' +SECRET_KEY = None # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ['localhost', '192.168.100.130'] +ALLOWED_HOSTS = ['localhost'] # Application definition @@ -104,8 +104,8 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/3.1/topics/i18n/ +# Localisation (localization?) LANGUAGE_CODE = 'en-us' - TIME_ZONE = 'Australia/Melbourne' USE_I18N = True @@ -120,4 +120,5 @@ USE_TZ = True STATIC_URL = '/static/' -AWS_BUCKET = 'virtual-orchestra' \ No newline at end of file +# Need to set this +AWS_BUCKET = '' \ No newline at end of file