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

5
from ..aws import *
6 7 8 9 10

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

MODULESTORE = CMS_AUTH_TOKENS['MODULESTORE']