https://github.com/shiftsst/core
A custom module for shiftsst.com (Magento 2)
https://github.com/shiftsst/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 shiftsst.com (Magento 2)
- Host: GitHub
- URL: https://github.com/shiftsst/core
- Owner: shiftsst
- Created: 2019-09-24T09:14:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-07T20:04:48.000Z (over 6 years ago)
- Last Synced: 2024-04-09T20:19:45.111Z (about 2 years 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: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A custom module for [shiftsst.com](https://shiftsst.com) (Magento 2).
## How to install
```
bin/magento maintenance:enable
rm -rf composer.lock
composer clear-cache
composer require shiftsst/core:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code generated/metadata
bin/magento setup:di:compile
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 Sm/autostore \
-f en_US
bin/magento maintenance:disable
```
## How to upgrade
```
bin/magento maintenance:enable
composer remove shiftsst/core
rm -rf composer.lock
composer clear-cache
composer require shiftsst/core:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code generated/metadata
bin/magento setup:di:compile
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 Sm/autostore \
-f en_US
bin/magento maintenance:disable
```