From 6b2c682fc1f504e000d09ef9801f9966f5a0de0e Mon Sep 17 00:00:00 2001 From: TravisCarden <traviscarden@236758.no-reply.drupal.org> Date: Mon, 29 Aug 2022 18:41:48 +0000 Subject: [PATCH] Issue #3306631 by TravisCarden: Fix/update a couple lines of environment variable documentation in DEVELOPING.md --- DEVELOPING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DEVELOPING.md b/DEVELOPING.md index 9a8e374539..99f2775185 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -42,7 +42,8 @@ Several details of your setup can be customized via environment variables. Set t DRUPAL_CORE_BRANCH="9.5.x" # The branch of Drupal core that will be installed. DRUPAL_CORE_SHALLOW_CLONE="TRUE" # Whether or not to do a "shallow clone" of Drupal core. (Defaults to TRUE.) See note below. AUTOMATIC_UPDATES_BRANCH="8.x-2.x" # The branch of the Automatic Updates module that will be installed. -SITE_DIRECTORY="auto-updates-dev" # The path to the directory where the dev environment will be installed. +SITE_DIRECTORY="auto_updates_dev" # The path to the directory where the dev environment will be installed. +SITE_HOST=".test" # The path for Drupal's TRUSTED_HOST_PATTERN. ``` Note: A shallow Git clone is much smaller and therefore faster, but it removes the ability to do debugging operations such as `git bisect` or `git blame`. To recover these abilities, [you can convert your repository to a full clone after the fact](https://stackoverflow.com/questions/6802145/how-to-convert-a-git-shallow-clone-to-a-full-clone): -- GitLab