Skip to content

Commit 821035c

Browse files
committed
CEXT-4720: add prerequisite steps to configure oope modules
1 parent 4031e60 commit 821035c

File tree

5 files changed

+15
-3
lines changed

5 files changed

+15
-3
lines changed

src/pages/starter-kit/checkout/configure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Select one of the following modules to learn about the available scripts:
2020
- [Shipping](./shipping-install.md#configuration)
2121
- [Tax](./tax-install.md#configuration)
2222

23-
## Configure OAuth Server-to-Server credential
23+
## Configure OAuth Server-to-Server Credential
2424

2525
<InlineAlert variant="info" slots="text"/>
2626

src/pages/starter-kit/checkout/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Use the following steps to create OAuth credentials for App Builder authenticati
4848

4949
Copy the IMS credentials to the `.env` file in the root of the project.
5050

51-
**NOTE**: These credentials are automatically filled out in [Configure OAuth Server-to-Server Credential](./configure#configure-oauth-server-to-server-credential).
51+
**NOTE**: These credentials are automatically filled out in [Configure OAuth Server-to-Server Credential](./configure.md#configure-oauth-server-to-server-credential).
5252

5353
```js
5454
OAUTH_CLIENT_ID=<client id>

src/pages/starter-kit/checkout/payment-install.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,15 @@ For more ideas on how you can use the payment module, refer to [payment use case
2727
To enable out-of-process payment methods in Commerce, install the `magento/module-out-of-process-payment-methods` module using the following command:
2828

2929
```bash
30-
composer require magento/module-out-of-process-payment-methods --with-dependencies
30+
composer require magento/module-out-of-process-payment-methods --with-dependencies
3131
```
3232

3333
## Configuration
3434

35+
<InlineAlert variant="info" slots="text"/>
36+
37+
This step requires [Adobe Commerce HTTP Client](./connect.md#connect-to-adobe-commerce) to authenticate the Commerce instance.
38+
3539
The starter kit provides the [`create-payment-methods`](https://github.com/adobe/commerce-checkout-starter-kit/blob/main/scripts/create-payment-methods.js) script to help configure Adobe Commerce. It reads the payment methods configuration from the `payment-methods.yaml` file and creates the payment methods in Adobe Commerce.
3640

3741
To run this script, use the following command:

src/pages/starter-kit/checkout/shipping-install.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ composer require magento/module-out-of-process-shipping-methods --with-dependenc
3232

3333
## Configuration
3434

35+
<InlineAlert variant="info" slots="text"/>
36+
37+
This step requires [Adobe Commerce HTTP Client](./connect.md#connect-to-adobe-commerce) to authenticate the Commerce instance.
38+
3539
The starter kit provides the [`create-shipping-carriers`](https://github.com/adobe/commerce-checkout-starter-kit/blob/main/scripts/create-shipping-carriers.js) script to help configure Adobe Commerce. It reads the shipping carriers configuration from the `shipping-carriers.yaml` file and creates the shipping carriers in Adobe Commerce.
3640

3741
To run this script, use the following command:

src/pages/starter-kit/checkout/tax-install.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ magento setup:di:compile
3838

3939
## Configuration
4040

41+
<InlineAlert variant="info" slots="text"/>
42+
43+
This step requires [Adobe Commerce HTTP Client](./connect.md#connect-to-adobe-commerce) to authenticate the Commerce instance.
44+
4145
The checkout starter kit provides the [`create-tax-integrations`](https://github.com/adobe/commerce-checkout-starter-kit/blob/main/scripts/create-tax-integrations.js) script to help configure Adobe Commerce. It reads the tax integrations configuration from the `tax-integrations.yaml` file and creates tax integrations in Adobe Commerce.
4246

4347
To run this script, use the following command:

0 commit comments

Comments
 (0)