Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 9e40a57

Browse files
authored
Updating release instructions. (#410)
1 parent 2074a92 commit 9e40a57

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

RELEASE.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This document outlines the process for creating a new BLT release.
77
In order to use these testing instructions:
88

99
* The `blt` alias must be installed.
10-
* Your LAMP stack must have host entry for `http://blt8-release.localhost` pointing to `./blt8-release/docroot`.
10+
* Your LAMP stack must have host entry for `http://blted8.localhost` pointing to `./blted8/docroot`.
1111
* MySQL must use `mysql://drupal:drupal@localhost/drupal:3306`. If this is not the case, modify the instructions below for your credentials.
1212
* In order to test Drupal VM, you must install VirtualBox and Vagrant. See [Drupal VM](https://github.com/geerlingguy/drupal-vm#quick-start-guide) for more information.
1313

@@ -16,17 +16,17 @@ In order to use these testing instructions:
1616
This test verifies that a new project can be created using `acquia/blt-project` via composer. This also tests the `blt update` process.
1717

1818
export COMPOSER_PROCESS_TIMEOUT=2000
19-
composer create-project acquia/blt-project blt8-release --no-interaction
20-
cd blt8-release
21-
./vendor/bin/drupal yaml:update:value project.yml project.local.hostname 'blt8-release.localhost'
22-
echo '$databases["default"]["default"]["username"] = "drupal";' >> docroot/sites/default/settings/local.settings.php
23-
echo '$databases["default"]["default"]["password"] = "drupal";' >> docroot/sites/default/settings/local.settings.php
19+
composer create-project acquia/blt-project blted8 --no-interaction
20+
cd blted8
21+
# Overwrite MySQL creds for your local machine, if necessary.
22+
# echo '$databases["default"]["default"]["username"] = "drupal";' >> docroot/sites/default/settings/local.settings.php
23+
# echo '$databases["default"]["default"]["password"] = "drupal";' >> docroot/sites/default/settings/local.settings.php
2424
blt local:setup
2525
drush uli
2626
read -p "Press any key to continue"
2727

2828
# This updates to the latest dev version.
29-
composer update acquia/blt:8.x-dev
29+
composer require acquia/blt:8.x-dev
3030
dr uli
3131
read -p "Press any key to continue"
3232
cd ../
@@ -35,14 +35,13 @@ This test verifies that a new project can be created using `acquia/blt-project`
3535

3636
This test verifies that a new project can be created from scratch using blt, without blt-project. It also tests Drupal VM integration.
3737

38-
rm -rf blt8-release
39-
mkdir blt8-release
40-
cd blt8-release
38+
rm -rf blted8
39+
mkdir blted8
40+
cd blted8
4141
git init
4242
composer init --stability=dev --no-interaction
4343
composer config prefer-stable true
4444
composer require acquia/blt:8.x-dev
45-
./vendor/bin/drupal yaml:update:value project.yml project.local.hostname 'blt8-release.localhost'
4645
composer update
4746
blt vm:init
4847
vagrant up

0 commit comments

Comments
 (0)