drupal / drupal_cms_site_template_base
A starter kit for building a Drupal CMS-based site template, ready to customize as you see fit.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Type:drupal-recipe
pkg:composer/drupal/drupal_cms_site_template_base
Requires
- drupal/drupal_cms_helper: ^2
This package is auto-updated.
Last update: 2025-11-04 03:16:19 UTC
README
This project is a starter kit for creating a Drupal CMS-based site template. The idea is to customize it into a fantastic site template using Drupal CMS's basic feature set, plus your own additions.
Getting Started
Prerequisites: DDEV 1.24.0 or later. DDEV is Drupal CMS's Docker-based local development environment of choice; you don't have to use it, but we strongly recommend it. These instructions will assume you have DDEV installed.
First, spin up a new Drupal CMS project:
mkdir cms
cd cms
ddev config --project-type=drupal11 --docroot=web
ddev start
ddev composer create-project drupal/cms:^2 --stability=alpha --no-install
ddev composer config minimum-stability dev
ddev composer install
Add this starter kit to your project:
ddev composer require drupal/drupal_cms_site_template_base:1.x-dev
Install Drupal using the starter kit:
# To install in the UI:
ddev launch
# Or at the command line with Drush:
ddev drush site:install --yes ../recipes/drupal_cms_site_template_base
You're now ready to build your Drupal site however you like!