15 lines
408 B
Python
15 lines
408 B
Python
"""
|
|
Settings for the LMS that runs alongside the CMS on AWS
|
|
"""
|
|
|
|
# We intentionally define lots of variables that aren't used, and
|
|
# want to import all variables from base settings files
|
|
# pylint: disable=wildcard-import, unused-wildcard-import
|
|
|
|
from ..aws import *
|
|
|
|
with open(ENV_ROOT / "cms.auth.json") as auth_file:
|
|
CMS_AUTH_TOKENS = json.load(auth_file)
|
|
|
|
MODULESTORE = CMS_AUTH_TOKENS['MODULESTORE']
|