# Lms.env.json INSTALLED array help

**URL:** https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960
**Category:** Development
**Created:** [April 27, 2020, 7:41am UTC](https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960 "2020-04-27T07:41:04Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Manish\_Kumar](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/manish_kumar/32/851_2.png) [@Manish\_Kumar](https://discuss.openedx.org/u/Manish_Kumar)
#### Post date: [April 27, 2020, 7:41am UTC](https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960/1 "2020-04-27T07:41:05Z")

</div>

in lms.env.json ADDL INSTALLED array was not so i added them at top. I had created django app in my pycharm compiler but i am not getting how ill set the path from here

---

<div class="post-metadata">

### Author: ![Mickiyas\_Ephrem](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/mickiyas_ephrem/32/2569_2.png) [@Mickiyas\_Ephrem](https://discuss.openedx.org/u/Mickiyas_Ephrem)
#### Post date: [April 27, 2020, 8:49am UTC](https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960/2 "2020-04-27T08:49:25Z")

</div>

1. Login to your edx instance and change to edxapp user, activate edx platform virtual environment and cd into exd-platform folder.

2. With the following command create a new app. `./manage.py lms startapp your-app-name`

3. Copy and paste the codes of admin.py, forms.py, and models.py files to the newly created app.

4. Add the newly created app to your lms.env.json file just like this. `“ADDL\_INSTALLED\_APPS”:[“your-app-name”],

5. Add the newly created form to your lms.env.json file like this “REGISTRATION\_EXTENSION\_FORM”: “your-app-name.forms.YourForm”,`

6. Run migrations.

7. Start/restart the LMS.

---

<div class="post-metadata">

### Author: ![chinmaybhatk](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/chinmaybhatk/32/447_2.png) [@chinmaybhatk](https://discuss.openedx.org/u/chinmaybhatk)
#### Post date: [April 27, 2020, 12:05pm UTC](https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960/3 "2020-04-27T12:05:55Z")

</div>

@Manish_Kumar,  
For point 1.

> [@Mickiyas\_Ephrem](#):
>
> Login to your edx instance and change to edxapp user, activate edx platform virtual environment and cd into exd-platform folder.

use below steps

```auto
sudo su edxapp -s /bin/bash
cd ~
source edxapp_env
python /edx/app/edxapp/edx-platform/manage.py {lms/cms} syncdb --settings=production

```

---

<div class="post-metadata">

### Author: ![Manish\_Kumar](https://sea2.discourse-cdn.com/flex020/user_avatar/discuss.openedx.org/manish_kumar/32/851_2.png) [@Manish\_Kumar](https://discuss.openedx.org/u/Manish_Kumar)
#### Post date: [April 30, 2020, 7:49am UTC](https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960/4 "2020-04-30T07:49:01Z")

</div>

extra custom field is added but when i click the create account button registration page the data is not inserted in database or button remains pressed

---

<div class="post-metadata">

### Author: ![brenton.kreiger](https://avatars.discourse-cdn.com/v4/letter/b/6bbea6/32.png) [@brenton.kreiger](https://discuss.openedx.org/u/brenton.kreiger)
#### Post date: [June 2, 2020, 11:11pm UTC](https://discuss.openedx.org/t/lms-env-json-installed-array-help/1960/5 "2020-06-02T23:11:51Z")

</div>

Hello - I was having similar problem and tried this, but I am prompted with a sudo password. None of the my-passwords.yml work for the edxapp user it seems? Do you have any information on this?

Thanks,  
Brenton
