Magento – app:config:dump locks everything in configuration

configurationdeploymentmagento2.2

I am using pipeline deployment. As suggested in Magento 2.2 documentation, to use pipeline deployment process use below code:

app:config:dump

and add config.php to source control. But when i execute app:config:dump it locks everything in system configuration.
Even not able to update store email addresses.

Is there any way to dump only required settings that will be used to generate static content on build system?

I am confused whether to use pipeline deployment or not.
I am using Magento 2.2 CE Open Source version.

Any one has implemented pipeline deployment and any suggestion for me.

Thanks in advance.

Best Answer

You need to delete all data from app > etc > config.php except modules array.

After run below command
setup:upgrade
setup:di:compile
setup:static-content:deploy -f
cache:flush.

All your system configuration are unlocked and you can change the value of it.

Related Topic