mirror of
https://github.com/ChristianLight/tutor.git
synced 2025-01-08 08:08:20 +00:00
Improve configurator defaults and wording
This commit is contained in:
parent
75d86252bc
commit
fd5af3e01c
@ -117,11 +117,11 @@ def interactive(args):
|
|||||||
configurator.add(
|
configurator.add(
|
||||||
'LMS_HOST', "Your website domain name for students (LMS).", 'www.myopenedx.com'
|
'LMS_HOST', "Your website domain name for students (LMS).", 'www.myopenedx.com'
|
||||||
).add(
|
).add(
|
||||||
'CMS_HOST', "Your website domain name for teachers (CMS).", 'studio.myopenedx.com'
|
'CMS_HOST', "Your website domain name for teachers (CMS).", 'studio.' + configurator.get('LMS_HOST')
|
||||||
).add(
|
).add(
|
||||||
'PLATFORM_NAME', "Platform name/title", "My Open edX"
|
'PLATFORM_NAME', "Your platform name/title", "My Open edX"
|
||||||
).add(
|
).add(
|
||||||
'CONTACT_EMAIL', "Public contact email address", 'contact@' + configurator.get('LMS_HOST')
|
'CONTACT_EMAIL', "Your public contact email address", 'contact@' + configurator.get('LMS_HOST')
|
||||||
).add(
|
).add(
|
||||||
'SECRET_KEY', "", random_string(24)
|
'SECRET_KEY', "", random_string(24)
|
||||||
).add(
|
).add(
|
||||||
|
Loading…
Reference in New Issue
Block a user