Bei Shopware5.6 Composer installation wurde die config.php geändert, was hat es damit aufsich?
Kann man eine custom config nachladen, z.b einer PHP Variable?
Bei Shopware5.6 Composer installation wurde die config.php geändert, was hat es damit aufsich?
Kann man eine custom config nachladen, z.b einer PHP Variable?
Schau mal in die config.php vom composer projekt
https://github.com/shopware/composer-project/blob/5.6/app/config/config.php
Du kannst vieles via ENV steuern. Das ist auch nur ein Template pass es an wie du es brauchst
So lade ich eine eigene config: CUSTOM_CONFIG_FILE: /var/www/custom/project/config.php
Als beispiel möchte ich :
'template' =\> ['templateDir' =\> $projectDir . 'themes', 'forceCompile' =\> true,],
nachladen ohne das ich die config.php ändern muss.
Wie muss ich meine config anpassen?