Custom app installation in frappe cloud

Make sure you are in a dev environment. You can not create a dev environment in frappe cloud

I just posted on how to setup a dev environment using docker check:

To create an app

bench new-app myapp

Then set your default development site

bench use dev.localhost (or whatever your dev site is)

Then

bench install-app myapp

Then

bench update

After creating your app, make sure developer mode is on then create doctypes where module = your app then they will be automatically added to

yourapp > yourapp > yourapp > doctype

To enable developer mode

Once you are done developing

  1. Push your app to github
  2. In your frappe cloud bench install the app using github
  3. Install the app on your site

If you push new updates to your app

  1. In frappe cloud benches wherever your app is installed, click on the vertical dots and fetch updates
  2. Update and deploy on your site
1 Like