From fc6a6b0457c5934b7a84bba085efff66ebdfd5b1 Mon Sep 17 00:00:00 2001 From: Andy Broomfield Date: Thu, 24 Aug 2023 10:55:44 +0100 Subject: [PATCH] Update README.md to describe config ignore Fix #35 Add a how to for config ignore to the readme. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c9b725c..5f8a320 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,13 @@ $ composer require --dev geocoder-php/nominatim-provider ``` The localgovdrupal/localgov_geo and localgovdrupal/localgov_os_places_geocoder_provider packages are needed to use the Ordnance Survey Places API-based address lookup plugin. Once these packages are installed, the *Localgov OS Places* plugin will become available for selection from the Localgov address lookup element's configuration form. + +## Editing webforms +Webforms in Drupal are config entities, therefore are by default exported with the website configuration. +It is often desirable that webforms are built and maintained by non-developers. +To avoid the configuration being removed by deployments, install the [Config ignore](https://www.drupal.org/project/config_ignore) module and under `/admin/config/development/configuration/ignore` add the following: +``` +webform.webform.* +webform.webform_options.* +``` +