mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 12:57:52 +00:00
Instruct to use "localhost" for local testing.
This commit is contained in:
parent
065c53f9cb
commit
4dc20e3d2b
4
configure
vendored
4
configure
vendored
@ -113,9 +113,9 @@ def main():
|
||||
defaults = json.load(f)
|
||||
|
||||
configurator = Configurator(silent=args.silent, **defaults).add(
|
||||
'LMS_HOST', "Your website domain name for students (LMS)", 'www.myopenedx.com'
|
||||
'LMS_HOST', "Your website domain name for students (LMS). Set 'localhost' for local testing.", 'www.myopenedx.com'
|
||||
).add(
|
||||
'CMS_HOST', "Your website domain name for teachers (CMS)", 'studio.myopenedx.com'
|
||||
'CMS_HOST', "Your website domain name for teachers (CMS). Set 'studio.localhost' for local testing.", 'studio.myopenedx.com'
|
||||
).add(
|
||||
'SECRET_KEY', "Secret key -- if you don't know what this is, you can safely accept the default",
|
||||
"".join([random.choice(string.ascii_letters + string.digits) for _ in range(24)])
|
||||
|
Loading…
Reference in New Issue
Block a user