Set Honor as the default enrollment
These instructions will allow you to set Honor as the default enrollment.
Update file lms.yml with following changes.
Use the following command to access the files from the terminal:
vim /edx/etc/lms.yml
Make the following changes in the files.
Default Course mode configuration is set from common.py. We will modify the following keys in lms.yml accordingly.
Default Settings:
COURSE_MODE_DEFAULTS = {
'bulk_sku': None,
'currency': u'usd',
'description': None,
'expiration_datetime': None,
'min_price': 0,
'name': _(u'Audit'),
'sku': None,
'slug': u'audit',
'suggested_prices': '',
}
Add the following keys in lms.yml:
COURSE_MODE_DEFAULTS:
'bulk_sku': null
'currency': "usd"
'description': null
'expiration_datetime': null
'min_price': 0
'name': 'Honor'
'sku': null
'slug': 'honor'
'suggested_prices': ''
Restart the edx service by issuing the following command:
sudo /edx/bin/supervisorctl restart lms