-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7da05d
commit 49841a3
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,16 +24,16 @@ Run your SSH Console to connect to your Magento 2 store. | |
## Step 2. Go to root ## | ||
Go to the root directory of your Magento 2 store. | ||
## Step 3. Install ## | ||
Execute the following command in your root directory: | ||
Execute the following commands in your root directory: | ||
``` | ||
composer require paazl/magento2-checkoutWidget | ||
composer config repositories.paazl-magento2-checkout-widget vcs [email protected]:paazl/magento2-checkout-widget.git | ||
composer require paazl/magento2-checkout-widget | ||
``` | ||
## Step 4. Cache and Deploy ## | ||
Activate the extension, clean the caches, and deploy the content to your Magento 2 environment by executing the following commands in root in the order shown: | ||
Activate the extension and run setup by executing the following commands in root in the order shown: | ||
``` | ||
php bin/magento module:enable Paazl_CheckoutWidget | ||
php bin/magento setup:upgrade | ||
php bin/magento cache:clean | ||
``` | ||
If Magento 2 is running in production modus, run compiltation and deploy static content: | ||
``` | ||
|