How to install custom create App from GitHub

Hi Guys,

I’m doing one project from one our client. Actully I want to install/pull my own custom created App from Github. Which was pushed by me on github.
Please help me step by step to get this thing done. And How I use this App after get install?

Thank You

Hi @Gaurav1,

Please apply it.

bench get-app your_github_custom_app_path

Example:
bench get-app https://github.com/frappe/frappe.git

Install the custom app on-site for

bench --site [sitename] install-app your_custom_app_name

Reference:

I hope this helps.

Thank You!

To install a custom app from GitHub, start by cloning the repository to your local machine using the git clone command followed by the repository’s URL. Once cloned, navigate into the directory and check for any specific installation instructions in the repository’s README file. You may need to install dependencies using commands like npm install or pip install -r requirements.txt, depending on the project’s requirements. Configure the app as necessary, such as setting up environment variables or database connections. Finally, run the app using the appropriate command specified in the documentation (npm start, python app.py, etc.) and ensure it functions correctly by testing it locally.