File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 11"""
22This settings file is optimized for local development. It should work equally well for bare-metal development and for
33running inside of development environments such as tutor.
4+
5+ This file is currently in development itself and so may not work for everyone out of the box. More updates, including
6+ updated documentation will be added as we get closer to removing devstack.py
47"""
58
69#Helpers for loading plugins and their settings.
710from edx_django_utils .plugins import add_plugins
811from openedx .core .djangoapps .plugins .constants import ProjectType , SettingsType
912
1013# Use the common file as the starting point.
14+ # pylint: disable=wildcard-import
1115from .common import *
12- from openedx .core .lib .derived import Derived , derive_settings
16+ from openedx .core .lib .derived import derive_settings
1317
1418DEBUG = True
1519
6670CORS_ALLOW_CREDENTIALS = True
6771CORS_ORIGIN_WHITELIST = (
6872 "http://apps.local.openedx.io:1996" ,
73+ "http://apps.local.openedx.io:2000" ,
6974)
7075
7176# Cookie Related Settings
7277SESSION_COOKIE_DOMAIN = '.local.openedx.io'
7378
7479# MFE Development URLs
7580LEARNER_HOME_MICROFRONTEND_URL = 'http://apps.local.openedx.io:1996/learner-dashboard/'
81+ LEARNING_MICROFRONTEND_URL = "http://apps.local.openedx.io:2000/learning/"
7682
7783#######################################################################################################################
7884#### DERIVE ANY DERIVED SETTINGS
You can’t perform that action at this time.
0 commit comments