From 505d772710ea6088999151e85c5ca0299ff6252a Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Mon, 5 Dec 2016 15:25:19 +0000 Subject: [PATCH] actually brand the site... --- project/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/settings.py b/project/settings.py index fd55db5..697a151 100755 --- a/project/settings.py +++ b/project/settings.py @@ -144,12 +144,13 @@ STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' # Wagtail settings -WAGTAIL_SITE_NAME = "project" +WAGTAIL_SITE_NAME = "TheOrangeOne" WAGTAIL_PASSWORD_MANAGEMENT_ENABLED = True WAGTAIL_ENABLE_UPDATE_CHECK = True WAGTAIL_ALLOW_UNICODE_SLUGS = True WAGTAIL_USAGE_COUNT_ENABLED = True +WAGTAILIMAGES_JPEG_QUALITY = 100 WAGTAILSEARCH_BACKENDS = { @@ -160,5 +161,5 @@ WAGTAILSEARCH_BACKENDS = { # Base URL to use when referring to full URLs within the Wagtail admin backend - # e.g. in notification emails. Don't include '/admin' or a trailing slash -BASE_URL = 'http://example.com' +BASE_URL = 'https://theorangeone.net' SITE_URL = BASE_URL