Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chi-teck/extension-configuration
Drush commands for managing extension configuration.
https://github.com/chi-teck/extension-configuration
drupal drupal-module drush
Last synced: 3 months ago
JSON representation
Drush commands for managing extension configuration.
- Host: GitHub
- URL: https://github.com/chi-teck/extension-configuration
- Owner: Chi-teck
- License: gpl-2.0
- Created: 2017-02-05T05:33:51.000Z (almost 8 years ago)
- Default Branch: 8.x-1.x
- Last Pushed: 2017-02-13T10:45:49.000Z (almost 8 years ago)
- Last Synced: 2024-10-18T05:21:14.496Z (4 months ago)
- Topics: drupal, drupal-module, drush
- Language: PHP
- Homepage:
- Size: 27.3 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Extension configuration Drupal module
The module offers a set of Drush commands for managing extension configuration.
## Usage
Tracked configuration items should be defined in _info.yml_ file under "config" section as follows:```yml
name: Example
type: module
description: Example description.
version: 8.x-1.0-dev
core: 8.x
config:
install:
- example.settings
- node.type.example
- core.entity_view.display.node.example.default
optional:
- image.style.max_1024x1024
```### Available Drush commands
Name | Alias | Description
----|-----|-----------
extension-configuration-export | ec-export | Export configuration to extension config directory.
extension-configuration-import | ec-import | Import configuration from extension config directory.
extension-configuration-delete | ec-delete | Delete configuration from active storage.
extension-configuration-clean | ec-clean | Remove untracked yml files from the config directory.
extension-configuration-status | ec-status | Display configuration status.## Credits
The project inspired by [Configuration development](https://www.drupal.org/project/config_devel) module.## License
GNU General Public License, version 2.