From 44dbc24d0d9d666c73e931f54f547309af2f0bda Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Mon, 1 Jan 2024 10:29:37 -0800 Subject: [PATCH] changed step order --- .gitpod.yml | 6 +++--- .gitpod/blt.yml | 13 ------------- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 .gitpod/blt.yml diff --git a/.gitpod.yml b/.gitpod.yml index 1775b3b2..90ec1fcd 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -38,15 +38,15 @@ tasks: - name: Drupal Prep init: > cd /workspace/back && + git checkout composer.* && + composer install --no-interaction && mkdir -p blt && cp .gitpod/blt.yml blt/local.blt.yml && - find docroot/sites/ -name 'local*' | xargs rm && + find docroot/sites/ -name 'local*' | xargs rm -rf && cp .gitpod/global.settings.php docroot/sites/settings/global.settings.php && cp .gitpod/default.local.services.yml docroot/sites/local.services.yml && export NEXT_PUBLIC_DRUPAL_BASE_URL=`gp url 8001` && export PREVIEW_URL=${NEXT_PUBLIC_DRUPAL_BASE_URL#"https://"} && - git checkout composer.* && - composer install --no-interaction && blt blt:telemetry:disable --no-interaction && blt settings && blt drupal:install -n diff --git a/.gitpod/blt.yml b/.gitpod/blt.yml deleted file mode 100644 index e977cd99..00000000 --- a/.gitpod/blt.yml +++ /dev/null @@ -1,13 +0,0 @@ -drupal: - account: - mail: sws-developers@lists.stanford.edu - db: - port: 3306 - host: localhost - username: root - password: '' - database: 'drupal' -project: - local: - protocol: https - hostname: '${env.PREVIEW_URL}' \ No newline at end of file