From 957cba8d38d37cc3fe650e82169d5cccf5d34d07 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 16 Dec 2023 11:30:08 +0000 Subject: [PATCH] Add daily email for 2023-12-15 Building your own in-house Drupal distribution --- src/content/daily-email/2023-12-15.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/content/daily-email/2023-12-15.md diff --git a/src/content/daily-email/2023-12-15.md b/src/content/daily-email/2023-12-15.md new file mode 100644 index 000000000..dff09ad7a --- /dev/null +++ b/src/content/daily-email/2023-12-15.md @@ -0,0 +1,23 @@ +--- +title: > + Building your own in-house Drupal distribution +pubDate: 2023-12-15 +permalink: > + archive/2023/12/15/building-your-own-in-house-drupal-distribution +tags: + - software-development + - php + - drupal +--- + +On several occasions, I've seen companies who build a lot of Drupal projects creating their own in-house [Drupal distribution] for new projects. + +Whilst this seems like a good idea, the ones I've seen are either not well maintained due to limited time between projects, or they're bloated with features and trying to include too much out of the box. + +If you maintain an in-house distribution, or are thinking of creating one, my advice is to ensure it's maintained by allocating enough time for this, and to keep it lean and only include the minimum amount of required functionality. + +Alternatively, maybe keep a template composer.json file to base new projects on instead of a full distribution. + +That could declare the modules and themes you want to include, without the additional overhead. + +[drupal distribution](https://www.oliverdavies.uk/archive/2023/12/14/save-time-and-effort-with-drupal-distributions)