How do I export out a form customized via the ui?

I customized an Issue doctype using the web interface or form builder by adding in text fields etc. How do I export out these customization into a json backup so that I can import it into a new site ?

the best way to do it (as far a i know) is via git …

and see this also:

Modifications in “Custom Field”, “Property Setter” and “Custom Script” or for that matter any DocType, can be exported into fixtures by adding them to hooks.py of your app.

fixtures = ["Custom Field", "Custom Script", "Property Setter"]

then export fixtures:

bench --site mysite export-fixtures

More :
https://frappe.github.io/frappe/user/en/guides/app-development/how-to-create-custom-fields-during-app-installation.html

1 Like