MagentoWorkflow
Blazing fast Magento 2 development in SublimeText 3/4
Details
Installs
- Total 652
- Win 229
- Mac 119
- Linux 304
Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
MagentoWorkflow
MagentoWorkflow — is a SublimeText 3 plugin that allows to work on Magento module or theme with enabled cache and forget about cache clean and outdated generated code. Additionally, it takes care about file sync into docker environment. This approach results in drastically improved Magento performance, which means faster and enjoyable development.
Installation
Windows is not supported. PR are welcome.
- Run “Package Control: Install Package” command
- Type
MagentoWorkflow
and press Enter
How it Works
When you save some file, MagentoWorkflow plugin automatically cleanup appropriate generated files, and triggers cache invalidation. Plugin knows when, where, and what to clear.
You will always see when the plugin do something. It reports about its processes in Sublime's status bar.
Commands
Pulled a lot of changes from remote repository? We've got your back! Press ⌘⇧P and use MagentoWorkflow commands:
- Wipe All - Cleanup all resources and flush cache storage
- Clear Cache - Cleanup selected magento cache
- Flush Cache - Flush cache storage
- Theme Clear - Cleanup theme resources (js, css)
- Module Clear - Cleanup module resources (js, css, php)
Docker
Module automatically discovers if you are using docker and run
commands in appropriate container. Additionally, when docker is detected,
module will sync changes from vendor
folder into the docker.
Tested with:
Configuration
No configuration is required. Just install the module and it's ready!
While you don't need to change anything to work with MagentoWorkflow, sometimes to may need to tune some option.
Option Name | Default Value | Description |
---|---|---|
bin_magento_command | bin/magento |
Command to run bin/magento. |
resources | ["css_module", "css_theme", "requirejs", "translation", "generated"] |
The list of resources to clean when needed. |
service | EMPTY |
Docker service name. Autodetected. |
cmd_prefix | docker-compose exec -T {service} |
Prefix to add to every terminal command. Service is taken from service option. |
sync_command | docker cp {filepath} $(docker-compose ps -q {service}\ | awk '{print $1}'):/var/www/html/{filepath} |
sync_folders | ["/vendor/"] |
Sync files from host to docker from these folders. |
Snippets
Previous version of this plugin had some useful snippets. Now, they've been moved to MagicTemplates plugin.