rvtraveller / qs-revert-all-features-d7
Quicksilver implementation to revert all features in a Drupal 7 site.
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:quicksilver-module
Requires
- php: >=5.5.0
- rvtraveller/qs-composer-installer: ^1.0
This package is auto-updated.
Last update: 2024-10-10 05:01:36 UTC
README
Revert all featuers in a Drupal 7 website using Quicksilver on Pantheon.
Note that with the current webphp
type operations (currently the only option for Pantheon), your timeout is limited to 120 seconds, so long-running operations should be avoided for now.
Instructions
- Require this Quicksilver module using composer (
composer require rvtraveller/qs-revert-all-features-d7
). - Add a Quicksilver operation to your
pantheon.yml
to fire the script before a deploy, using the example.pantheon.yml file for reference. Note: you must set up your project'scomposer.json
file to move projects of typequicksilver-module
to the appropriate directory in your project. - Test a deploy out!
Optionally, you may want to use the terminus workflows watch
command to get immediate debugging feedback.
Example composer.json file
{
"require": {
"rvtraveller/qs-revert-all-features-d7": "1.0"
},
"extra": {
"installer-paths": {
"web/private/scripts/quicksilver/{$name}": ["type:quicksilver-module"]
}
}
}