Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 7b1bfef

Browse files
authored
Merge branch 'master' into add-documentation-for-FormDataProvider-UI-component
2 parents 1ab956d + 658b915 commit 7b1bfef

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed

src/_data/toc/configuration-guide.yml

-19
Original file line numberDiff line numberDiff line change
@@ -286,25 +286,6 @@ pages:
286286
- label: Configure the database profiler
287287
url: /config-guide/db-profiler/db-profiler.html
288288

289-
- label: Install and configure Elasticsearch (Magento Commerce only)
290-
url: /config-guide/elasticsearch/es-overview.html
291-
children:
292-
293-
- label: Configure nginx and Elasticsearch
294-
url: /config-guide/elasticsearch/es-config-nginx.html
295-
296-
- label: Configure Apache and Elasticsearch
297-
url: /config-guide/elasticsearch/es-config-apache.html
298-
299-
- label: Configure Elasticsearch stopwords
300-
url: /config-guide/elasticsearch/es-config-stopwords.html
301-
302-
- label: Configure Magento to use Elasticsearch
303-
url: /config-guide/elasticsearch/configure-magento.html
304-
305-
- label: Change the Elasticsearch client
306-
url: /config-guide/elasticsearch/es-downgrade.html
307-
308289
- label: Install and configure Elasticsearch
309290
url: /config-guide/elasticsearch/es-overview.html
310291
children:

src/cloud/project/ece-tools-upgrade-project.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ To upgrade project to use ece-tools:
6262
hooks:
6363
# We run build hooks before your application has been packaged.
6464
build: |
65-
php ./vendor/bin/ece-tools build
65+
set -e
66+
php ./vendor/bin/ece-tools build:generate
67+
php ./vendor/bin/ece-tools build:transfer
6668
# We run deploy hook after your application has been deployed and started.
6769
deploy: |
6870
php ./vendor/bin/ece-tools deploy

src/cloud/project/project-conf-files_magento-app.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,9 @@ Add CLI commands under the `build`, `deploy`, or `post_deploy` sections _before_
217217
hooks:
218218
# We run build hooks before your application has been packaged.
219219
build: |
220-
php ./vendor/bin/ece-tools build
220+
set -e
221+
php ./vendor/bin/ece-tools build:generate
222+
php ./vendor/bin/ece-tools build:transfer
221223
# We run deploy hook after your application has been deployed and started.
222224
deploy: |
223225
php ./vendor/bin/ece-tools deploy

0 commit comments

Comments
 (0)