Multiple developer working on ERPNext Customization

Hi,
We are setting up ERPNext for our organization, on the customization part we have setup a development environment, while 4 developers are setting up the system on their local machine. I want to know, if we set apps/erpnext onto our internal git repo, what will happen to DB changes, or one developer commit and push to git, how do they copy the database changes.

2 Likes

by exporting the database or specific tables.

if the developer made change using customize form then tabCustom Field table should be exported and given to another developer.

Also, look into the fixtures that you can use with your app:

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

This will allow to include field customisation in your app and deploy it (not only on install, but also on update).

Hope this helps.

Thanks for the reply. I will check and revert.