Skip to content

Commit

Permalink
Merge pull request #31366 from openedx/feanil/minimal_config
Browse files Browse the repository at this point in the history
feat: Add a minimal yaml file for use with production.py
  • Loading branch information
feanil committed Nov 29, 2022
2 parents 456eecb + f838652 commit 5bb84e9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions lms/envs/minimal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# WARNING: Experimental
#
# This is the minimal settings you need to set to be able to get django to
# load when using the production.py settings files. It's useful to point
# LMS_CFG and CMS_CFG to this file to be able to run various paver commands
# without needing a full docker setup.
#
# Follow up work will likely be done as a part of
# https://github.com/openedx/wg-developer-experience/issues/136
---

SECRET_KEY: aseuothsaeotuhaseotisaotenihsaoetih
FEATURES:
PREVIEW_LMS_BASE: "http://localhost"
TRACKING_BACKENDS: {}
EVENT_TRACKING_BACKENDS: {}
JWT_AUTH: {}
CELERY_QUEUES: {}
MKTG_URL_LINK_MAP: {}
MKTG_URL_OVERRIDES: {}
REST_FRAMEWORK: {}

# For just the CMS
LMS_ROOT_URL: "http://localhost"
LMS_INTERNAL_ROOT_URL: "http://localhost"

0 comments on commit 5bb84e9

Please sign in to comment.