https://github.com/mage2pro/elasticsearch
It adds new features to the built-in Magento Elasticsearch module
https://github.com/mage2pro/elasticsearch
elasticsearch mage2pro mage2pro-module mage2pro-module-ready mage2pro-module-reusable magento magento2 magento2-extension magento2-module
Last synced: about 2 months ago
JSON representation
It adds new features to the built-in Magento Elasticsearch module
- Host: GitHub
- URL: https://github.com/mage2pro/elasticsearch
- Owner: mage2pro
- Created: 2022-09-14T06:57:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-15T03:18:40.000Z (almost 4 years ago)
- Last Synced: 2024-10-11T21:44:32.491Z (over 1 year ago)
- Topics: elasticsearch, mage2pro, mage2pro-module, mage2pro-module-ready, mage2pro-module-reusable, magento, magento2, magento2-extension, magento2-module
- Language: PHP
- Homepage: https://upwork.com/fl/mage2pro
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
It adds new features to the built-in Magento's Elasticsearch module.
## How to install
```
bin/magento maintenance:enable
rm -rf composer.lock
composer clear-cache
composer require mage2pro/elasticsearch:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/*
bin/magento setup:di:compile
bin/magento cache:enable
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```
## How to upgrade
```
bin/magento maintenance:enable
composer remove mage2pro/elasticsearch
rm -rf composer.lock
composer clear-cache
composer require mage2pro/elasticsearch:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/*
bin/magento setup:di:compile
bin/magento cache:enable
rm -rf pub/static/*
bin/magento setup:static-content:deploy -f en_US
bin/magento maintenance:disable
```