https://github.com/julio-os/shipping
A custom shipping module for julio.com (Magento 2)
https://github.com/julio-os/shipping
mage2pro mage2pro-module mage2pro-module-bespoke mage2pro-module-ready mage2pro-shipping magento magento2 magento2-extension magento2-module
Last synced: 5 months ago
JSON representation
A custom shipping module for julio.com (Magento 2)
- Host: GitHub
- URL: https://github.com/julio-os/shipping
- Owner: julio-os
- Created: 2020-04-02T16:51:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-02T17:14:52.000Z (about 6 years ago)
- Last Synced: 2025-07-07T11:56:01.694Z (11 months ago)
- Topics: mage2pro, mage2pro-module, mage2pro-module-bespoke, mage2pro-module-ready, mage2pro-shipping, magento, magento2, magento2-extension, magento2-module
- Language: PHP
- Homepage: https://upwork.com/fl/mage2pro
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A custom shipping module for [julio.com](https://julio.com) (Magento 2).
## How to install
```posh
rm -rf composer.lock
composer clear-cache
composer require julio-os/shipping:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US es_MX
bin/magento setup:static-content:deploy \
--area frontend \
--theme Mgs/ninth \
-f es_MX
bin/magento maintenance:disable
```
## How to upgrade
```posh
bin/magento maintenance:enable
composer remove julio-os/shipping
rm -rf composer.lock
composer clear-cache
composer require julio-os/shipping:*
bin/magento setup:upgrade
bin/magento cache:enable
rm -rf var/di var/generation generated/code
bin/magento setup:di:compile
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US es_MX
bin/magento setup:static-content:deploy \
--area frontend \
--theme Mgs/ninth \
-f es_MX
bin/magento maintenance:disable
```