i have followed the below process.
cd /edx/app/edxapp
sudo -u edxapp git clone https://github.com/open-craft/custom-form-app.git
sudo -u edxapp /edx/bin/pip.edxapp install custom-form-app/
In lms.env.json Added
"ADDL_INSTALLED_APPS": [ "custom_reg_form" ],
and
"REGISTRATION_EXTENSION_FORM" : "custom_reg_form.forms.ExtraInfoForm"
save and quit
Run migrations.
python /edx/app/edxapp/edx-platform/manage.py -h lms syncdb --settings=aws
python /edx/app/edxapp/edx-platform/manage.py -h cms syncdb --settings=aws
Start/restart the LMS.
sudo /edx/bin/supervisorctl restart all
i have followed the below process. cd /edx/app/edxapp sudo -u edxapp git clone https://github.com/open-craft/custom-form-app.git sudo -u edxapp /edx/bin/pip.edxapp install custom-form-app/ In lms.env.json Added "ADDL_INSTALLED_APPS": [ "custom_reg_form" ], and "REGISTRATION_EXTENSION_FORM" : "custom_reg_form.forms.ExtraInfoForm" save and quit Run migrations. python /edx/app/edxapp/edx-platform/manage.py -h lms syncdb --settings=aws python /edx/app/edxapp/edx-platform/manage.py -h cms syncdb --settings=aws
Start/restart the LMS. sudo /edx/bin/supervisorctl restart all
Fields dose not reflects in registration form.
can any one help me out