Skip to content

Commit 0798af6

Browse files
committed
CEXT-4720: extract to common file
1 parent 673a1ca commit 0798af6

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<InlineAlert variant="info" slots="text"/>
2+
3+
This step requires the [Adobe Commerce HTTP Client](./connect.md#connect-to-adobe-commerce) to authenticate the Commerce instance.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ keywords:
66
- Extensibility
77
---
88

9+
import Configuration from '/src/_includes/checkout-configuration.md'
10+
911
# Configure Commerce
1012

1113
This section provides an overview of configuring out-of-process extensibility on Adobe Commerce for developing an app using the checkout starter kit.
@@ -124,9 +126,7 @@ aio event provider delete <provider-id>
124126

125127
### configure-commerce-events
126128

127-
<InlineAlert variant="info" slots="text"/>
128-
129-
This step requires [Adobe Commerce HTTP Client](./connect.md#connect-to-adobe-commerce) to authenticate the Commerce instance.
129+
<Configuration />
130130

131131
The [`configure-commerce-events`](https://github.com/adobe/commerce-checkout-starter-kit/blob/main/scripts/configure-commerce-events.js) script configures the Commerce event provider for your Commerce instance.
132132

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ keywords:
66
- Extensibility
77
---
88

9+
import Configuration from '/src/_includes/checkout-configuration.md'
910
import Version from '/src/_includes/checkout-version.md'
1011

1112
# Install the payment module
@@ -32,9 +33,7 @@ composer require magento/module-out-of-process-payment-methods --with-dependenci
3233

3334
## Configuration
3435

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.
36+
<Configuration />
3837

3938
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.
4039

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ keywords:
66
- Extensibility
77
---
88

9+
import Configuration from '/src/_includes/checkout-configuration.md'
910
import Version from '/src/_includes/checkout-version.md'
1011

1112
# Install the shipping module
@@ -32,9 +33,7 @@ composer require magento/module-out-of-process-shipping-methods --with-dependenc
3233

3334
## Configuration
3435

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.
36+
<Configuration />
3837

3938
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.
4039

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ keywords:
66
- Extensibility
77
---
88

9+
import Configuration from '/src/_includes/checkout-configuration.md'
910
import Version from '/src/_includes/checkout-version.md'
1011

1112
# Install the tax module
@@ -38,9 +39,7 @@ magento setup:di:compile
3839

3940
## Configuration
4041

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.
42+
<Configuration />
4443

4544
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.
4645

0 commit comments

Comments
 (0)