This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console-en/translations/config.export.yml

23 lines
977 B
YAML
Raw Normal View History

2018-11-23 12:29:20 +00:00
description: 'Export current application configuration.'
options:
directory: 'Define the export directory to save the configuration output.'
tar: 'If set, the configuration will be exported to an archive file.'
remove-uuid: 'If set, the configuration will be exported without uuid key.'
remove-config-hash: 'If set, the configuration will be exported without the default site hash key.'
messages:
directory: 'The configuration was exported at "%s"'
error: 'An error occurred while creating your directory at "%s"'
examples:
- description: 'Optional you can add the path to export'
execution: |
drupal config:export \
--directory="path/to/export"
- description: 'If export will be in a compressed file and/or if uuid and config hashes will be removed.'
execution: |
drupal config:export \
--directory="path/to/export" \
--tar \
--remove-uuid \
--remove-config-hash