From 0b1ef5e956e85ab7ba0e21e1e6eb868f38aab486 Mon Sep 17 00:00:00 2001 From: Alec Reynolds Date: Fri, 22 Sep 2023 10:29:48 -0700 Subject: [PATCH 1/4] baseline test From b953044dae80f6192716f4d03f468d1603addfba Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Sat, 23 Sep 2023 13:44:12 -0400 Subject: [PATCH 2/4] rework dogfooding --- examples/.lando.local.yml | 2 ++ examples/joomla-mysql8/README.md | 2 +- examples/joomla/README.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 examples/.lando.local.yml diff --git a/examples/.lando.local.yml b/examples/.lando.local.yml new file mode 100644 index 0000000..576eea8 --- /dev/null +++ b/examples/.lando.local.yml @@ -0,0 +1,2 @@ +plugins: + "@lando/joomla": ./../../ diff --git a/examples/joomla-mysql8/README.md b/examples/joomla-mysql8/README.md index 9645b8e..cdbb271 100644 --- a/examples/joomla-mysql8/README.md +++ b/examples/joomla-mysql8/README.md @@ -17,10 +17,10 @@ lando poweroff # Should initialize the latest Joomla codebase rm -rf mysql8 && mkdir -p mysql8 && cd mysql8 lando init --source remote --remote-url https://downloads.joomla.org/cms/joomla3/3-10-4/Joomla_3-10-4-Stable-Full_Package.tar.gz --recipe joomla --webroot . --name lando-joomla-mysql8 --option database=mysql:8.0.22 +cp -f ../../.lando.local.yml .lando.local.yml && cat .lando.local.yml # Should start up successfully cd mysql8 -echo -e "\nplugins:\n \"@lando/joomla/\": ./../../" >> .lando.yml lando start ``` diff --git a/examples/joomla/README.md b/examples/joomla/README.md index abdd8ec..931ade3 100644 --- a/examples/joomla/README.md +++ b/examples/joomla/README.md @@ -17,10 +17,10 @@ lando poweroff # Should initialize the latest Joomla codebase rm -rf joomla && mkdir -p joomla && cd joomla lando init --source remote --remote-url https://downloads.joomla.org/cms/joomla3/3-10-4/Joomla_3-10-4-Stable-Full_Package.tar.gz --recipe joomla --webroot . --name lando-joomla +cp -f ../../.lando.local.yml .lando.local.yml && cat .lando.local.yml # Should start up successfully cd joomla -echo -e "\nplugins:\n \"@lando/joomla/\": ./../../" >> .lando.yml lando start ``` From 142eb92bb2ef1c02b10e436aef3380a3398b0e46 Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Sat, 23 Sep 2023 13:50:17 -0400 Subject: [PATCH 3/4] rework dogfooding part 2 --- examples/joomla-mysql8/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/joomla-mysql8/README.md b/examples/joomla-mysql8/README.md index cdbb271..041bb97 100644 --- a/examples/joomla-mysql8/README.md +++ b/examples/joomla-mysql8/README.md @@ -30,7 +30,7 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should return the drupal installation page by default +# Should return the joomla installation page by default cd mysql8 lando ssh -s appserver -c "curl -L localhost" | grep "Joomla" From df238615fc417af4d1a2148519c809c59e043ce0 Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Sat, 23 Sep 2023 13:51:22 -0400 Subject: [PATCH 4/4] rework dogfooding part 3 --- examples/joomla/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/joomla/README.md b/examples/joomla/README.md index 931ade3..5bf0936 100644 --- a/examples/joomla/README.md +++ b/examples/joomla/README.md @@ -30,7 +30,7 @@ Verification commands Run the following commands to validate things are rolling as they should. ```bash -# Should return the drupal installation page by default +# Should return the joomla installation page by default cd joomla lando ssh -s appserver -c "curl -L localhost" | grep "Joomla"