diff --git a/20221011132429.md b/20221011132429.md index 7bbb2cc..804bcaa 100644 --- a/20221011132429.md +++ b/20221011132429.md @@ -6,3 +6,34 @@ * $ lando init (current dir, drupal 8/9, webroot=web, name the app) * $ lando start (makes composer available) * $ lando composer install + +========================= + +current info from Lando site for Drupal 10: + +# Initialize a drupal10 recipe +mkdir my-first-drupal10-app \ + && cd my-first-drupal10-app \ + && lando init \ + --source cwd \ + --recipe drupal10 \ + --webroot web \ + --name my-first-drupal10-app + +# Create latest drupal10 project via composer +lando composer create-project drupal/recommended-project:10.x tmp && cp -r tmp/. . && rm -rf tmp + +# Composer can timeout on install for some machines, if that happens, run the following command and then re-run the previous lando composer command: +# lando composer config --global process-timeout 2000 + +# Start it up +lando start + +# Install a site local drush +lando composer require drush/drush + +# Install drupal +lando drush site:install --db-url=mysql://drupal10:drupal10@database/drupal10 -y + +# List information about this app +lando info