Commit a0c5cc86 by David Adams

Allow LOGO_IMAGE_URL to be environment variable.

parent f37e6781
...@@ -197,4 +197,4 @@ USE_L10N = True ...@@ -197,4 +197,4 @@ USE_L10N = True
LOCALE_PATHS = (os.path.join(os.path.dirname(os.path.dirname(__file__)), 'locale'),) LOCALE_PATHS = (os.path.join(os.path.dirname(os.path.dirname(__file__)), 'locale'),)
# Parameterize digest logo image url # Parameterize digest logo image url
LOGO_IMAGE_URL = "{}/static/images/header-logo.png".format(LMS_URL_BASE) LOGO_IMAGE_URL = os.getenv('LOGO_IMAGE_URL', "{}/static/images/header-logo.png".format(LMS_URL_BASE))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment