Initial Drupal 11 with DDEV setup

This commit is contained in:
gluebox
2025-10-08 11:39:17 -04:00
commit 89ef74b305
25344 changed files with 2599172 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#ddev-generated
## Command provided by https://github.com/ddev/ddev-drupal-contrib
## To customize this configuration, see:
## https://ddev.readthedocs.io/en/stable/users/extend/customization-extendibility/
web_environment:
# To change the Drupal core version, see the README:
# https://github.com/ddev/ddev-drupal-contrib/blob/main/README.md#changing-the-drupal-core-version
- DRUPAL_CORE=^11
- # https://git.drupalcode.org/project/gitlab_templates/-/blob/1.9.6/scripts/expand_composer_json.php?ref_type=tags#L15
- IGNORE_PROJECT_DRUPAL_CORE_VERSION=1
# To change the location of your project code, see the README:
# https://github.com/ddev/ddev-drupal-contrib/blob/main/README.md#changing-the-symlink-location
- DRUPAL_PROJECTS_PATH=modules/custom
hooks:
post-start:
- exec-host: |
if [[ -f vendor/autoload.php ]]; then
ddev symlink-project
else
exit 0
fi