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