Custom Apps

Why does it show "Attention Required" next to my custom app?

Attention Required badge

This means that we are not able to fetch the latest updates from the associated GitHub repository for the app. This happens most probably because the Cloud GitHub app does not have the permission to access the repository. Please make sure Cloud app has proper permissions from GitHub settings:



You can then retry fetching the latest update:

Fetch Latest Updates in dropdown

Workaround: Attention required even after trying the above

If you're getting the error even after adding and removing the app on Cloud, please visit https://github.com/settings/installations/ and then click the configure button next to the Cloud Github App.

Configure Cloud Github

It should take you to another page with a URL like https://github.com/settings/installations/<unique_number> . Copy this number (or the URL as a whole)

Now, you can raise a support ticket stating the problem (or linking this doc page) with the number you copied so that we can quickly resolve the issue from our end.

How to add python dependencies to my custom app? Eg: pandas

If you require to install pandas or any other python package for that matter, you need to add them in your dependency file rather than doing pip install pandas

You can add python dependencies to your app by adding the name of the same in pyproject.toml file or requirements.txt file (only one should be present) present in the root folder of your custom app.

You can check ERPNext's pyproject.toml for reference

On this page