A Magento module initially created by CTI Digital to create and maintain database variables using files. This module aims to bring the following benefits to a Magento developer's work flow:
- Install Magento from scratch with important database based configuration ready.
- Share and collaborate configuration with other colleagues using your own versioning system.
- Keep versions of your configurations using your own versioning system.
- Split your configuration based on the environment you're developing on.
If you're interested about finding out more about the background of the configurator, watch this lightning talk by Rick Steckles at Mage Titans in Manchester on YouTube.
This is a work in progress and by no means for use with production environments (and probably not even development environments either just yet).
If you are contributing the module, please run the following commands to stand the best chance with Travis CI liking your code. These test include PHP Code Sniffer, PHP Mess Detector, PHP Copy and Paste Detector, PHP Unit
php vendor/bin/phpcs --standard=PSR2 vendor/ctidigital/magento2-configurator/Model/ vendor/ctidigital/magento2-configurator/Console/ vendor/ctidigital/magento2-configurator/Test/ vendor/ctidigital/magento2-configurator/Helper/
php vendor/bin/phpmd vendor/ctidigital/magento2-configurator/Model/,vendor/ctidigital/magento2-configurator/Console/,vendor/ctidigital/magento2-configurator/Test/,vendor/ctidigital/magento2-configurator/Helper/ text cleancode,codesize,controversial,design,naming,unusedcode
php vendor/bin/phpcpd vendor/ctidigital/magento2-configurator/Model/ vendor/ctidigital/magento2-configurator/Console vendor/ctidigital/magento2-configurator/Test/ vendor/ctidigital/magento2-configurator/Helper/
php vendor/bin/phpunit --coverage-clover build/logs/clover.xml vendor/ctidigital/magento2-configurator/Test/Unit/
If you're developing a new component, please ensure you have your corresponding unit test which extends ComponentAbstractTestCase
as that will test that your component has the required functions.
Do also include sample files with your component that works
- Create a
master.yaml
file in<mage_root>/app/etc/
. (seeSamples/master.yaml
) - Enable Modules
CtiDigital_Configurator
,FireGento_FastSimpleImport
. - Run
bin/magento configurator:run --env="<environment>"
- Listing available components
bin/magento configurator:list
- Running individual components
bin/magento configurator:run --env="<environment>" --component="config"
- Extra logs
bin/magento configurator:run --env="<environment>" -v
Component | Code Written | Tests Written | Sample Files |
---|---|---|---|
Websites | ✅ | ❕ | ✅ |
System Configuration | ✅ | ❕ | ✅ |
Categories | ✅ | ❕ | ✅ |
Products | ✅ | ❕ | ✅ |
Attributes | ✅ | ❕ | ✅ |
Blocks | ✅ | ❕ | ✅ |
Admin Roles | ✅ | ❕ | ✅ |
Admin Users | ✅ | ❕ | ✅ |
Pages | ✅ | ❕ | ✅ |
Widgets | ✅ | ❕ | ✅ |
Customer Groups | ✅ | ❕ | ✅ |
Media | ✅ | ❕ | ✅ |
Tax Rules | ✅ | ❕ | ✅ |
API Integrations | ✅ | ❕ | ✅ |
Tax Rates | ✅ | ❕ | ✅ |
Attribute Sets | ❌ | ❌ | ❌ |
Customers | ❌ | ❌ | ❌ |
Related Products | ❌ | ❌ | ❌ |
SQL | ❌ | ❌ | ❌ |
Shipping Table Rates | ❌ | ❌ | ❌ |
Catalog Price Rules | ❌ | ❌ | ❌ |
Shopping Cart Price Rules | ❌ | ❌ | ❌ |
Rewrites | ❌ | ❌ | ❌ |
Orders | ❌ | ❌ | ❌ |
MIT