https://github.com/dxmoto/core
A custom module for dxmoto.com (Magento 2)
https://github.com/dxmoto/core
mage2pro mage2pro-module mage2pro-module-bespoke mage2pro-module-ready magento magento2 magento2-extension magento2-module
Last synced: 5 months ago
JSON representation
A custom module for dxmoto.com (Magento 2)
- Host: GitHub
- URL: https://github.com/dxmoto/core
- Owner: dxmoto
- Created: 2020-08-11T19:32:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T11:07:32.000Z (over 5 years ago)
- Last Synced: 2025-07-08T17:06:32.027Z (11 months ago)
- Topics: mage2pro, mage2pro-module, mage2pro-module-bespoke, mage2pro-module-ready, magento, magento2, magento2-extension, magento2-module
- Language: PHP
- Homepage: https://upwork.com/fl/mage2pro
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
A custom module for [dxmoto.com](https://dxmoto.com) (Magento 2).
## How to install
```posh
bin/magento maintenance:enable
rm -rf composer.lock
composer clear-cache
composer require dxmoto/core:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/*
bin/magento setup:di:compile
bin/magento cache:clean
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US
bin/magento setup:static-content:deploy \
--area frontend \
--theme Infortis/ultimo \
-f en_US
bin/magento maintenance:disable
```
## How to upgrade
```posh
bin/magento maintenance:enable
composer remove dxmoto/core
rm -rf composer.lock
composer clear-cache
composer require dxmoto/core:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/*
bin/magento setup:di:compile
bin/magento cache:clean
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US
bin/magento setup:static-content:deploy \
--area frontend \
--theme Infortis/ultimo \
-f en_US
bin/magento maintenance:disable
```