Not all questions were answered but a shared action item was trying to document (or point to existing docs for) the most commonly asked FAQs around Tutor. A loose goal at this point is to determine a Tutor superuser who can answer these FAQs and have the documentation WG transform them into searchable written docs.
I’ll add that it would be helpful, as well, for people to post FAQ’s they’ve previously had and answers to the questions, if you’ve discovered the answer already. Any internal documentation you have - notes on stickies even - that you’d like to see rendered in the public docs would be helpful!
This is documented with an example but I don’t think the example covers enough use cases or describes how to trace a feature that you want to enable through tutor. I documented my case here, but I struggled with: a) what is the right patch name (openedx-lms-common-settings & openedx-cms-common-settings) and b) when to use FEATURE as in this example vs not as in this example.
Enable a plugin
Take forum for example. The majority of new users I think want to enable this, but I can’t see it mentioned in the official tutor docs, only in old support responses. Very common use case and very easy win (“I turned something important on!”) for a new user.
Switch the Theme
I almost never switch the theme and it is documented, but I tried to test it just now by.
I know this is brought up in many discussion forums, but I’m still unclear if it is totally unavailable when installing via Tutor or if there is an approach to fixing. This should be clear from Tutor docs.
Regarding codejail, I have gone through all the Links & details you have attached, codejail repo has already this issue(Link) opened, as you noted.
I also agree that this(Link) is a best-practice solution for above codejail issue.
And it would be good to add this part in tutor documentation, that start using tutor-contrib-codejail if using tutor as mentioned in above link although its not an official tutor plugin. These kind of FAQs can be added to a separate section i.e.unofficial tutor plugins & apps in tutor docs.
Thanks for raising this — the missing piece in the docs is really about how to trace a setting and then choose the correct patch target.
The correct approach is:
Find where the setting is defined in the Open edX platform.
Search the Open edX repository for the setting name (e.g., ENTRANCE_EXAMS, ALLOW_PUBLIC_ACCOUNT_CREATION, etc.).
Identify how it is defined:
If it is inside the FEATURES dictionary, e.g. FEATURES['ENTRANCE_EXAMS'] = True
then it is a feature flag.
If it is defined as a standalone Django setting, e.g. SOME_SETTING = ...
then it should be patched as a regular variable.
Decide where it should apply based on your use case:
LMS only → openedx-lms-common-settings
CMS only → openedx-cms-common-settings
Entire platform → openedx-common-settings (preferred when applicable)
Regarding this, correct me if I am wrong, you mean mentioning the forum or any plugin that a new user can enable/disable? If that’s the case, we can mention that many Open edX features are distributed as Tutor plugins and are not enabled by default. Tutor keeps the core minimal, so operators explicitly enable only what they need.
To see all installed plugins and their status:
tutor plugins list
To enable a plugin (e.g., forum):
tutor plugins enable forum
tutor config save
tutor local restart
The same applies to any other bundled plugin. We’ll add this to the Quick Start guide, including a list of default plugins enabled, since it’s currently missing and is a common first step for new users.
Them instead of rebuilding images which takes time, I ran tutor dev run lms bash followed by ./manage.py lms collectstatic and run tutor local do settheme indigo2. Note: It works with tutor images build openedx as well with one addition step mentioned below.
One Additional step I followed, I restarted the LMS container after setting the theme and changes reflected. We can surely add this step to the document. Thanks!
I think there is also catch when it comes to FEATURE flags, they might need to go into lms-env-features instead of openedx-lms-common-settings. Eg., LTI Provider discussion here