Skip to content
This repository has been archived by the owner on Sep 12, 2019. It is now read-only.

Latest commit

 

History

History
31 lines (28 loc) · 830 Bytes

config-export.md

File metadata and controls

31 lines (28 loc) · 830 Bytes

config:export

Exportă configurările curente ale aplicației.

Usage:

drupal config:export [options]
ce

Available options

Option Details
--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.

Examples

  • Optional you can add the path to export
drupal config:export  \
  --directory="path/to/export"
  • If export will be in a compressed file and/or if uuid and config hashes will be removed.
drupal config:export  \
  --directory="path/to/export" \
  --tar \
  --remove-uuid \
  --remove-config-hash