From b4f20185e0ae1fcc62ebdfeccaea5fd4dad3425f Mon Sep 17 00:00:00 2001 From: Luca Nerlich <5942270+LucaNerlich@users.noreply.github.com> Date: Wed, 1 Mar 2023 11:56:26 +0100 Subject: [PATCH 1/3] Add core-store.ee_information to default excludes Prevent licence codes from being written to the rep. --- server/config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/config.js b/server/config.js index ba1d904..709748c 100644 --- a/server/config.js +++ b/server/config.js @@ -12,6 +12,7 @@ module.exports = { "core-store.plugin_users-permissions_grant", "core-store.plugin_upload_metrics", "core-store.strapi_content_types_schema", + "core-store.ee_information", ], }, validator() {}, From a9169268d244ff353f537310a1fb04369edbf987 Mon Sep 17 00:00:00 2001 From: Luca Nerlich <5942270+LucaNerlich@users.noreply.github.com> Date: Wed, 1 Mar 2023 12:31:46 +0100 Subject: [PATCH 2/3] Add "core-store.ee_information", to readme.md excluded config section --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb918ba..19f505e 100644 --- a/README.md +++ b/README.md @@ -357,8 +357,9 @@ In the example below you can see how, and also what the default settings are. excludedTypes: [], excludedConfig: [ "core-store.plugin_users-permissions_grant", - "core-store.plugin_upload_metrics", - "core-store.strapi_content_types_schema", + "core-store.plugin_upload_metrics", + "core-store.strapi_content_types_schema", + "core-store.ee_information", ], }, }, From a41cf84083371ba66756c5b1a3488a2a9e950de5 Mon Sep 17 00:00:00 2001 From: Luca Nerlich <5942270+LucaNerlich@users.noreply.github.com> Date: Wed, 1 Mar 2023 12:42:31 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 19f505e..a696bf9 100644 --- a/README.md +++ b/README.md @@ -426,7 +426,7 @@ Specify the names of configs you want to exclude from the syncing process. By de ###### Key: `excludedConfig` -> `required:` NO | `type:` array | `default:` `['core-store.plugin_users-permissions_grant', 'core-store.plugin_upload_metrics', 'core-store.strapi_content_types_schema']` +> `required:` NO | `type:` array | `default:` `['core-store.plugin_users-permissions_grant', 'core-store.plugin_upload_metrics', 'core-store.strapi_content_types_schema', 'core-store.ee_information',]` ## 🤝 Contributing