Commit 27300cd6 by Jason Bau

make LOGO_IMAGE_URL configurable via env vars

parent 510ecb35
......@@ -197,4 +197,4 @@ USE_L10N = True
LOCALE_PATHS = (os.path.join(os.path.dirname(os.path.dirname(__file__)), 'locale'),)
# 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