From baae031c8a4d094c001e4d93f1c75ad15fb53b16 Mon Sep 17 00:00:00 2001 From: ahughes3 <669850+ahughes3@users.noreply.github.com> Date: Mon, 9 Sep 2024 12:24:57 -0500 Subject: [PATCH 1/4] test sandbox comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c30001ef9..98979fbcd0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Stanford Humanities And Sciences -This is an Acquia BLT tool to assist in deploying code for Humanities and Sciences installation profile. +This is an Acquia BLT tool to assist in deploying code for Humanities and Sciences installation profile.. ## Getting Started From dad77724efc592e258d48e363c7d5369ce1cab5b Mon Sep 17 00:00:00 2001 From: ahughes3 <669850+ahughes3@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:02:36 -0500 Subject: [PATCH 2/4] Testing Diffy and Tugboat integration Adding Diffy setting to tugboat config and adding additional url to vrt list --- .tugboat/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.tugboat/config.yml b/.tugboat/config.yml index 6a806799a9..1cecec2253 100644 --- a/.tugboat/config.yml +++ b/.tugboat/config.yml @@ -38,6 +38,22 @@ services: # Init the settings files. - blt blt:init:settings + + # Download the Diffy CLI tool, and authenticate. The latest version can be + # found at https://github.com/DiffyWebsite/diffy-cli/releases + - curl -L https://github.com/DiffyWebsite/diffy-cli/releases/download/0.1.33/diffy.phar -o /usr/local/bin/diffy + - chmod +x /usr/local/bin/diffy + - diffy auth:login ${DIFFY_API_KEY} + + # Clean up after apt-get, if it was used + #- apt-get clean + #- rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + + online: + # If you would like to compare this service with production + - diffy project:compare ${DIFFY_PROJECT_ID} prod custom --env2Url="${TUGBOAT_SERVICE_URL}" + --commit-sha=${TUGBOAT_PREVIEW_SHA} + update: - rm -rf vendor - composer install --no-ansi @@ -70,6 +86,7 @@ services: # Collection of urls to compare visual results. urls: - / + - /components/collections-0/collections-postcards # What to call the service hosting MySQL. This name also acts as the # hostname to access the service by from the php service. From 8731c302d2e56e0fc9a5af2a929e375e7efb8ff6 Mon Sep 17 00:00:00 2001 From: ahughes3 <669850+ahughes3@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:12:19 -0500 Subject: [PATCH 3/4] Updating preview urls --- .tugboat/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.tugboat/config.yml b/.tugboat/config.yml index 1cecec2253..c091cb4604 100644 --- a/.tugboat/config.yml +++ b/.tugboat/config.yml @@ -86,7 +86,7 @@ services: # Collection of urls to compare visual results. urls: - / - - /components/collections-0/collections-postcards + - /components/collections/collections-postcards # What to call the service hosting MySQL. This name also acts as the # hostname to access the service by from the php service. From e9b14230dd7b5f960deb831377da4ab40819f644 Mon Sep 17 00:00:00 2001 From: ahughes3 <669850+ahughes3@users.noreply.github.com> Date: Fri, 20 Sep 2024 13:03:57 -0500 Subject: [PATCH 4/4] adding private pages as a vrt url --- .tugboat/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.tugboat/config.yml b/.tugboat/config.yml index c091cb4604..4aabb88d0a 100644 --- a/.tugboat/config.yml +++ b/.tugboat/config.yml @@ -87,6 +87,7 @@ services: urls: - / - /components/collections/collections-postcards + - /private-pages/private-page-components # What to call the service hosting MySQL. This name also acts as the # hostname to access the service by from the php service.