-
Notifications
You must be signed in to change notification settings - Fork 0
DDEV-documentation: Added docs folder with the rollout documentation #58
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds comprehensive documentation for upgrading from Lando to DDEV as a local development environment for Drupal projects. The guide covers installation steps, project setup, command migration, and provides practical examples.
- Added detailed upgrade guide with installation instructions for both Linux and macOS
- Documented DDEV project structure and command conversion from Lando tooling
- Included example scripts and troubleshooting guidance
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| docs/rollout-lando-to-ddev-upgrade.md | Complete upgrade guide with prerequisites, installation, configuration, and command migration examples |
| docs/README.md | Documentation index with link to the upgrade guide |
| README.md | Added reference to docs directory for upgrade guides |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ## | ||
| ## Parameters: | ||
| ## environment: 'main' (default) or 'production' | ||
| ## options:## --help: Display help information |
Copilot
AI
Nov 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing newline between '## options:' and '## --help:'. The line should be split for proper formatting.
| ## options:## --help: Display help information | |
| ## options: | |
| ## --help: Display help information |
| set -eu | ||
|
|
||
| # Show script execution | ||
| if VERBOSE is setif [[ "${VERBOSE:-}" == "true" ]]; then |
Copilot
AI
Nov 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid bash syntax. The line contains 'if VERBOSE is setif' which is malformed. Should be just 'if [[ "${VERBOSE:-}" == "true" ]]; then' or remove the comment prefix entirely.
| if VERBOSE is setif [[ "${VERBOSE:-}" == "true" ]]; then | |
| if [[ "${VERBOSE:-}" == "true" ]]; then |
| fi | ||
| fi | ||
|
|
||
| echo -e "${GREEN}Clearing caches...${NC}"$DRUSH cc drush$DRUSH crecho -e "${GREEN}Database sync from ${YELLOW}${env}${GREEN} completed successfully!${NC}" |
Copilot
AI
Nov 6, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Multiple commands are concatenated on a single line without proper separators. This line should be split into separate lines with proper newlines between each command.
| echo -e "${GREEN}Clearing caches...${NC}"$DRUSH cc drush$DRUSH crecho -e "${GREEN}Database sync from ${YELLOW}${env}${GREEN} completed successfully!${NC}" | |
| echo -e "${GREEN}Clearing caches...${NC}" | |
| $DRUSH cc drush | |
| $DRUSH cr | |
| echo -e "${GREEN}Database sync from ${YELLOW}${env}${GREEN} completed successfully!${NC}" |
Overview
Screenshots
Testing