Install package using composer
composer config minimum-stability dev
composer require emico/tweakwise-export
Install package using zip file
Extract tweakwise-export.zip src folder to app/code/Emico/TweakwiseExport/
Run installers
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
All export settings can be found under Stores -> Configuration -> Catalog -> Tweakwise -> Export.
Generating feeds can be done using the command line.
php bin/magento tweakwise::export
php bin/magento setup:static-content:deploy
Debugging is done using the default debugging functionality of Magento / PHP. You can enable indentation of the feed by setting deploy mode to developer.
php bin/magento deploy:mode:set developer
Usage:
tweakwise:export [-c|--validate] [file]
Arguments:
file Export to specific file (default: "var/feeds/tweakwise.xml")
Options:
--validate (-c) Validate feed and rollback if fails.
--help (-h) Display this help message
--quiet (-q) Do not output any message
--verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version (-V) Display this application version
--ansi Force ANSI output
--no-ansi Disable ANSI output
--no-interaction (-n) Do not ask any interactive questio
Currently there are no events documented, this will be done in the coming version(s).
For profiling use the standard Magento profiler, more info will be provided in the coming version(s).