|
|
|
@ -8,3 +8,16 @@ ddev config --project-type=drupal --php-version=8.3 --docroot=web |
|
|
|
|
|
|
|
|
|
|
|
# 3. Start the containers |
|
|
|
# 3. Start the containers |
|
|
|
ddev start |
|
|
|
ddev start |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Install the recommended Drupal 11 project |
|
|
|
|
|
|
|
ddev composer create "drupal/recommended-project:^11" --no-install |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Move into the web directory and install dependencies |
|
|
|
|
|
|
|
cd web |
|
|
|
|
|
|
|
ddev composer install |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Install the site (quick standard install) |
|
|
|
|
|
|
|
ddev drush site:install standard --account-name=admin --account-pass=admin -y |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Open the site in your browser |
|
|
|
|
|
|
|
ddev launch |
|
|
|
|