Deploy Custom app to Frappe cloud ERPNext

Hello Community,

I am using ERPNext which is hosted on frappe cloud. I have created custom app and want to install it on frappe cloud. I have gone through documentation and there is an option to upload it from github. I have created custom app on my local system in frappe. How can I push that particular app on github? Should I directly push that app folder from /frappe/apps folder?

Thanks

Hi @erpnxt_user,

If you create a custom app in the local system then go to the app directory (frappe-bench/app/custom_app).
if have a GitHub account then first create a repository in github.
Then run the command:

git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/github_username/your_repository_name.git
git push -u origin main

Then check your repository branch.
All custom app data set in repo branch.

and Install custom app in Frappe cloud for:
https://frappecloud.com/docs/bench/install-custom-app

Thank You!

1 Like