A custom module for astrodistribution.com (Magento 2)

Installs: 171

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 3

Language:HTML

Type:magento2-module

0.0.2 2019-08-17 04:35 UTC

This package is auto-updated.

Last update: 2024-03-31 03:15:21 UTC


README

A custom module for astrodistribution.com (Magento 2).

How to install

bin/magento maintenance:enable
php ./composer.phar clear-cache
php ./composer.phar require astrodistribution/core:*
bin/magento setup:upgrade
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 en_GB
bin/magento setup:static-content:deploy \
	--area frontend \
	--theme Smartwave/porto \
	-f en_US en_GB
bin/magento maintenance:disable
bin/magento cache:enable

How to upgrade

bin/magento maintenance:enable
php ./composer.phar remove astrodistribution/core
php ./composer.phar clear-cache
composer require astrodistribution/core:*
bin/magento setup:upgrade
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 en_GB
bin/magento setup:static-content:deploy \
	--area frontend \
	--theme Smartwave/porto \
	-f en_US en_GB
bin/magento maintenance:disable
bin/magento cache:enable

If you have problems with these commands, please check the detailed instruction.