Frappe bench get-app [git hub] command was ignored by app exist in frappe repository

Hello, I tried create an lms app and clone from my github by using bench get-app [git hub] --branch develop lms. But console log print git clone https://github.com/frappe/lms.git --branch develop --depth 1 --origin upstream. I know frappe have frappe-lms app and maybe bench found “lms” folder name, so it try using the other repo. So, may I put some params config in command line to force use my repo? Thanks in advance.

When you want to insta your created app then use below command

bench get-app [link of your repository]

bench get-app [github link] --branch develop

Add overwrite flag in case a previous attempt didnt finish cleanly

bench get-app [github link] --branch develop --overwrite
1 Like

Hi @Usama_Naveed @adam26d thank you for your answer, but as I mentioned, I installed my custom app from github use commands like you suggest and it didn’t work. Here is the screenshot

You are using command

bench get-app [your repo link] --branch develop lms

So in your command bench understanding you need frappe lms app because you are using lms in the command. Your repo link ignore when frappe app keyword used lms

Use below command without this –branch develop lms

bench get-app [your repo link]

Clear! Thank you.

1 Like