# Create a directory and initialize a drupal11 recipemkdir drupal11 \
&& cd drupal11 \
&& lando init \
--source cwd \
--recipe drupal11 \
--webroot web \
--name drupal11
# Start the Lando environmentlando start
# Create latest drupal11 project via composerlando composer create-project drupal/recommended-project:11.x tmp && cp -r tmp/. . && rm -rf tmp
Here instead of 11.x replace whichever version you prefer
# Install a site local drushlando composer require drush/drush
# Install drupallando drush site:install --db-url=mysql://drupal11:drupal11@database/drupal11 -y
# List information about this applando info
- Log in to post comments