6
0
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:
Régis Behmo 2018-06-04 21:43:40 -04:00
parent 065c53f9cb
commit 4dc20e3d2b

4
configure vendored
View File

@ -113,9 +113,9 @@ def main():
defaults = json.load(f) defaults = json.load(f)
configurator = Configurator(silent=args.silent, **defaults).add( 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( ).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( ).add(
'SECRET_KEY', "Secret key -- if you don't know what this is, you can safely accept the default", '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)]) "".join([random.choice(string.ascii_letters + string.digits) for _ in range(24)])