From 11215b01121a762b410563129f9e388f5f128090 Mon Sep 17 00:00:00 2001 From: bach Date: Wed, 23 Jul 2025 10:46:25 +0200 Subject: [PATCH] added import core.extension first in maj --- Makefile | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index ebb19b2..f2f13eb 100644 --- a/Makefile +++ b/Makefile @@ -48,29 +48,33 @@ restart_php: docker-compose restart php -d9_maj_config: d9_crd d9_composer_install d9_updb d9_cim d9_sync_struct d9_cr d9_pag +d9_maj_config: d9_crd d9_ext d9_composer_install d9_updb d9_cim d9_sync_struct d9_cr d9_pag d9_crd: - docker exec eql-php-1 /bin/bash -c "drush cache-clear drush" + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush cache-clear drush" -d9_cr: - docker exec eql-php-1 /bin/bash -c "drush cr" - -d9_updb: - docker exec eql-php-1 /bin/bash -c "drush updb -y" - -d9_cim: - docker exec eql-php-1 /bin/bash -c "drush config-import -y" - -d9_sync_struct: - docker exec eql-php-1 /bin/bash -c "drush im --choice full && drush ib --choice full & drush it --choice full" - -d9_pag: - docker exec eql-php-1 /bin/bash -c "drush pag all canonical_entities:node && drush pag all canonical_entities:taxonomy_term" +d9_ext: + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush cdi1 config/sync/core.extension.yml" d9_composer_install: docker exec eql-php-1 /bin/bash -c "composer install" +d9_cr: + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush cr" + +d9_updb: + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush updb -y" + +d9_cim: + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush config-import -y" + +d9_sync_struct: + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush im --choice full && vendor/bin/drush ib --choice full & vendor/bin/drush it --choice full" + +d9_pag: + docker exec eql-php-1 /bin/bash -c "vendor/bin/drush pag all canonical_entities:node && vendor/bin/drush pag all canonical_entities:taxonomy_term" + + down: docker-compose down