66f83289da533949fdde93b7984020c6e4b0aa42
[yaffs-website] / vendor / drupal / console-en / translations / config.export.yml
1 description: 'Export current application configuration.'
2 options:
3     directory: 'Define the export directory to save the configuration output.'
4     tar: 'If set, the configuration will be exported to an archive file.'
5     remove-uuid: 'If set, the configuration will be exported without uuid key.'
6     remove-config-hash: 'If set, the configuration will be exported without the default site hash key.'
7 messages:
8     directory: 'The configuration was exported at "%s"'
9     error: 'An error occurred while creating your directory at "%s"'
10 examples:
11     - description: 'Optional you can add the path to export'
12       execution: |
13         drupal config:export  \
14           --directory="path/to/export"
15     - description: 'If export will be in a compressed file and/or if uuid and config hashes will be removed.'
16       execution: |
17         drupal config:export  \
18           --directory="path/to/export" \
19           --tar \
20           --remove-uuid \
21           --remove-config-hash
22