Compare commits

...

1 Commits

Author SHA1 Message Date
Thomas Tracy
a93900d65a Bypass key check until we are ready to add it to internal 2020-03-16 13:44:52 -04:00
2 changed files with 2 additions and 2 deletions

View File

@@ -15,4 +15,4 @@ SEGMENT_KEY=null
SITE_NAME='edX'
SUPPORT_URL='http://localhost:18000/support'
USER_INFO_COOKIE_NAME='edx-user-info'
COACHING_ENABLED=false
COACHING_ENABLED=''

View File

@@ -49,7 +49,7 @@ initialize({
config: () => {
mergeConfig({
SUPPORT_URL: process.env.SUPPORT_URL,
COACHING_ENABLED: process.env.COACHING_ENABLED,
COACHING_ENABLED: (process.env.COACHING_ENABLED || false),
}, 'App loadConfig override handler');
},
},