i made a custom theme by some name and copied all files of indigo and started the tutor dev server now when i make any change in html files or anything changes are not being reflected immediately, instead they are taking too much time to reflect on lms now i follow this bewlo thread to disable the caching using tutor plugins , it is workinf fine but due to this user sessions,login,register cache is also disabled due to which i am not able to login as superadmin or as student in lms so is there any way to ensure that any theme change can be reflected immediately and user sessions are stored as well therefore not breaking the login/register flow . -
You can disable the cache for development purposes by creating a plugin like this
from tutor import hooks
hooks.Filters.ENV_PATCHES.add_item( ( “openedx-lms-common-settings”, “”" CACHES = { “default”: { “BACKEND”: “django.core.cache.backends.dummy.DummyCache”, } } “”"
) )
With this, your changes will be applied by refreshing the page. Do not use this in production though