Hi I just need to update the frappe version, without the ernext. How could I do that.
Thanks.
Hi I just need to update the frappe version, without the ernext. How could I do that.
Thanks.
Frappe and ERPNext versions are designed to be deployed in Sync.
If you still want [not recommended]
cd apps/frappe && git pull upstream [branch] && cd -
bench --site [sitename] migrate # for schema update
bench setup requirements # to update dependencies
bench build # for JS changes
Thank you.!