You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation for feature flags mentions lms.env.json and similar files. I think it's worth mentioning (in the guideline) that Ansible is the recommended way for building such files.
Additionally, the documentations features Python code when mentioning JSON files. While one can guess and do the right thing. I'd rather see a JSON syntax instead of Python.
Python: Notice the missing double quotes " and the constant True:
FEATURES = {
'LICENSING': True,
...
JSON: Notice the lowercase true and the double quotes ":
"FEATURES": {
"LICENSING": true,
...
The text was updated successfully, but these errors were encountered:
The documentation for feature flags mentions
lms.env.json
and similar files. I think it's worth mentioning (in the guideline) that Ansible is the recommended way for building such files.Additionally, the documentations features Python code when mentioning JSON files. While one can guess and do the right thing. I'd rather see a JSON syntax instead of Python.
Python: Notice the missing double quotes
"
and the constantTrue
:JSON: Notice the lowercase
true
and the double quotes"
:The text was updated successfully, but these errors were encountered: