Skip to content

Commit

Permalink
Update installation page
Browse files Browse the repository at this point in the history
  • Loading branch information
asalloum5 committed Sep 2, 2024
1 parent c807f0f commit cec473e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/pages/admin-ui-sdk/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This method installs the SDK on a cloud instance.
1. Update your `composer.json` file:

```bash
composer require "magento/module-commerce-backend-uix": ">=1.0"
composer require "magento/commerce-backend-sdk": ">=1.0"
```

1. Update dependencies and install the extension:
Expand All @@ -55,7 +55,7 @@ This method installs the SDK on a cloud instance.
The `composer update` command updates all dependencies. If you do not want to update all dependencies at the same time, use this command instead:

```bash
composer update magento/module-commerce-backend-uix
composer update magento/commerce-backend-sdk
```

1. Commit and push your changes.
Expand All @@ -67,7 +67,7 @@ This method installs the SDK on an On-premises instance.
1. Add the SDK module to the `require` section of the `composer.json` file:

```bash
composer require "magento/module-commerce-backend-uix": ">=1.0"
composer require "magento/commerce-backend-sdk": ">=1.0"
```

1. Update dependencies and install the extension:
Expand All @@ -79,7 +79,7 @@ This method installs the SDK on an On-premises instance.
The `composer update` command updates all dependencies. If you do not want to update all dependencies at the same time, use this command instead:

```bash
composer update magento/module-commerce-backend-uix
composer update magento/commerce-backend-sdk
```

1. Upgrade Adobe Commerce:
Expand All @@ -88,6 +88,12 @@ This method installs the SDK on an On-premises instance.
bin/magento setup:upgrade
```

1. Refresh indexes:

```bash
bin/magento indexer:reindex
```

1. Clear the cache:

```bash
Expand All @@ -105,11 +111,11 @@ Use the following procedure to update patch versions of the SDK, such as from V1
1. Run the following command to update the SDK:

```bash
composer update magento/module-commerce-backend-uix
composer update magento/commerce-backend-sdk
```

1. Run the following commands to upgrade Adobe Commerce and clear the cache.

```bash
bin/magento setup:upgrade && bin/magento cache:clean
bin/magento setup:upgrade && bin/magento indexer:reindex && bin/magento cache:clean
```

0 comments on commit cec473e

Please sign in to comment.