Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

  1. First, determine whether your setting should be a dynamically modifiable django admin model setting instead?  If so, it is stored in a django model and available via the django Admin interface.  Changing its values would not require any code changes.  So it is preferable over a code-based django setting unless it is security-sensitive or you anticipate it not changing often for a given openedX deployment.
  2. Determine whether your setting is security-sensitive.
    1. Does it contain any secret keys, private keys, IP addresses, etc?
    2. If so, it is an Auth setting.
    3. Otherwise, it is an Env setting.
  • No labels