Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

baseline test #19

Merged
merged 5 commits into from
Sep 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/.lando.local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
plugins:
"@lando/joomla": ./../../
4 changes: 2 additions & 2 deletions examples/joomla-mysql8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions examples/joomla/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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"

Expand Down
Loading