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..041bb97 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 ``` @@ -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" diff --git a/examples/joomla/README.md b/examples/joomla/README.md index abdd8ec..5bf0936 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 ``` @@ -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"