Just a simple Drupal 10 project for tutorial.
Versions I'm currently using:
- Docker v20.10.22, build 3a2c30b
- Docker Compose v2.15.1
- DDEV v1.22.7
- Git v2.39.3
Clone the repo into a folder of your preference:
git clone git@github.com:juancarielo/drupal10-tutorial.git && cd drupal10-tutorialConfigure DDEV project (optional):
ddev config --project-type=drupal10 --docroot=web --create-docrootThen start the project:
ddev startInstall dependencies using Composer:
ddev composer installTo stop:
ddev stopTo delete, execute this line:
ddev delete -OyCreate a project without installation, just generating the composer.json and composer.lock files:
composer create-project drupal/recommended-project . --no-install