[ ] Affected Issues have been mentioned in the Closing issues section
[ ] Documentation has been written/updated
[ ] PR title is ready for inclusion in changelog
Updates the list and get environment and project commands to include the same information. Extends the get commands with a --wide flag that will extend the data with more fields if required.
$ lagoon list projects
ID PROJECTNAME GITURL PRODUCTIONENVIRONMENT PRODUCTIONROUTE DEVENVIRONMENTS
1 test git@github.com:shreddedbacon/d8-example.git main https://example.com 3/5
2 test1 git@github.com:shreddedbacon/d8-example.git main https://example2.com 0/5
3 test2 git@github.com:shreddedbacon/d8-example.git main https://example3.com 0/5
14 test3 git@github.com:shreddedbacon/d8-example.git main https://example4.com 0/5
15 test4 git@github.com:shreddedbacon/d8-example.git main https://example5.com 0/5
$ lagoon get project -p test
ID PROJECTNAME GITURL PRODUCTIONENVIRONMENT PRODUCTIONROUTE DEVENVIRONMENTS
1 test git@github.com:shreddedbacon/d8-example.git main https://example.com 3/5
$ lagoon get project -p test --wide
ID PROJECTNAME GITURL PRODUCTIONENVIRONMENT PRODUCTIONROUTE DEVENVIRONMENTS AUTOIDLE BRANCHES PULLREQUESTS ROUTERPATTERN FACTSUI PROBLEMSUI DEPLOYMENTSDISABLED
1 test git@github.com:shreddedbacon/d8-example.git main https://example.com 3/5 true This project is configured with DeployTargets This project is configured with DeployTargets - false false false
General Checklist
Updates the
list
andget
environment and project commands to include the same information. Extends theget
commands with a--wide
flag that will extend the data with more fields if required.Closing issues
closes #152