Skip to content

Commit 774c750

Browse files
authored
Merge pull request AdobeDocs#86 from oshmyheliuk/ece-tools-release
Instruction on how to install ece-tools from git
2 parents e9f7d14 + f86aa8f commit 774c750

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

src/pages/webhooks/installation.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following steps apply to both Adobe Commerce on cloud infrastructure and on-
2727
bin/magento module:enable --all
2828
```
2929

30-
## On-premise installation
30+
## On-premises installation
3131

3232
1. Run the following command to initialize the `AdobeCommerceWebhookPlugins` module. This module consists of generated plugins based on a list of subscribed webhooks.
3333

@@ -65,6 +65,25 @@ Use the following steps to perform additional configuration for Adobe Commerce o
6565

6666
1. Run the `composer info magento/ece-tools` command to determine your version of ece-tools. If the version is less than `2002.1.16`, [update to the most recent version](https://experienceleague.adobe.com/docs/commerce-cloud-service/user-guide/dev-tools/ece-tools/update-package.html).
6767

68+
If the ece-tools version `2002.1.16` is not available yet, install the `develop` branch from git.
69+
70+
Add the following to the `repositories` section of your `composer.json` file:
71+
72+
```json
73+
"ece-tools": {
74+
"type": "git",
75+
"url": "git@github.com:magento/ece-tools.git"
76+
},
77+
```
78+
79+
Add the following to the `require` section of your `composer.json`:
80+
81+
```json
82+
"magento/ece-tools": "dev-develop as 2002.1.16",
83+
```
84+
85+
Run the `composer update` command.
86+
6887
1. Enable webhooks in the `.magento.env.yaml` file:
6988

7089
```yaml

0 commit comments

Comments
 (0)