aws.py 381 Bytes
Newer Older
1 2 3 4
"""
Settings for the LMS that runs alongside the CMS on AWS
"""

5 6 7 8
# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=W0401, W0614

9
from ..aws import *
10 11 12 13 14

with open(ENV_ROOT / "cms.auth.json") as auth_file:
    CMS_AUTH_TOKENS = json.load(auth_file)

MODULESTORE = CMS_AUTH_TOKENS['MODULESTORE']