test: Be able to run migrations locally on bare metal.

With this change, we can run the migrations locally using minimal.yml
This commit is contained in:
Feanil Patel
2023-05-08 10:12:28 -04:00
parent c3dc07ed7d
commit 1538b4b9ab

View File

@@ -20,6 +20,12 @@ MKTG_URL_LINK_MAP: {}
MKTG_URL_OVERRIDES: {}
REST_FRAMEWORK: {}
# We need MEDIA_ROOT because otherwise ./lms/djangoapps/certificates/migrations/0003_data__default_modes.py will fail.
#
# Using a local tmp location is not a good default for a production system. For production we should use
# off-machine storage to more easily scale the system.
MEDIA_ROOT: "/tmp/edx-platform/media/"
# For just the CMS
LMS_ROOT_URL: "http://localhost"
LMS_INTERNAL_ROOT_URL: "http://localhost"