drutopia/drutopia_template

Project template for Drupal 9 Drutopia projects with a relocated document root

dev-master 2023-01-23 16:44 UTC

This package is auto-updated.

Last update: 2024-04-25 21:48:03 UTC


README

This is a composer based installer for the Drutopia distribution.

Prerequisites

  1. Prepare a local server for Drupal
  2. Install Composer

Installation of Drutopia basic

composer create-project drutopia/drutopia_template:dev-master --no-interaction DIRECTORY

Composer will create a new directory called DIRECTORY (change to whatever presumably lower-case name you would like). Inside you will find the web directory with the entire code base of Drutopia distribution. You should be able to install it like any other Drupal site.

Updating

Drutopia manages the version of Drupal core, so you should not require the drupal/core project. To update to a new version of core, update to the version of Drutopia that includes the new core version. For example:

composer require --no-update drutopia/drutopia:~1.0-rc2
composer update

Making and managing custom changes

You will likely want to add the contents of this directory to git version control, including the composer.lock file that was created when you ran composer create-project.

You can composer require any packages such as Drupal modules you wish to add to your site.