You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-5
Original file line number
Diff line number
Diff line change
@@ -91,12 +91,21 @@ return (new InstallConfig())
91
91
->get();
92
92
```
93
93
94
-
Instead of using a hard-coded value, you might also want to set an environment variable `MAGENTO_MODULE` - for instance, in the **Run** configuration in PHPStorm - which is then reused via the method `enableByMagentoModuleEnv`. This way, you can keep the same `install-config-mysql.php` file while reusing it for various **Run** configurations:
94
+
Instead of using a hard-coded value, you might also want to set an environment variable `MAGENTO_MODULE` - for instance, in the **Run** configuration in PHPStorm. This way, you can keep the same `install-config-mysql.php` file while reusing it for various **Run** configurations:
95
95
96
96
```php
97
-
$disableModules->disableAll()
98
-
->enableMagento()
99
-
->enableByMagentoModuleEnv();
97
+
MAGENTO_MODULE=Yireo_Example
98
+
```
99
+
100
+
Note that if your module has dependencies, they need to be added to the same environment as well:
101
+
102
+
```php
103
+
MAGENTO_MODULE=Yireo_Example,Yireo_Foobar
104
+
```
105
+
106
+
If you have a lot of requirements, you can also use the `MAGENTO_MODULE_FOLDER` variable instead, which parses your own `etc/module.xml` and adds all declared modules to the whitelist:
107
+
```php
108
+
MAGENTO_MODULE_FOLDER=app/code/Yireo/Example
100
109
```
101
110
102
111
Another example, all the Magento modules are enabled by default. But then MSI and GraphQL are disabled again, while all Yireo modules are enabled:
0 commit comments