22 lines
924 B
YAML
22 lines
924 B
YAML
#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
|