This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
quote - это заказ покупателя | |
quote_address, quote_address_item - это адреса, связанные с заказом покупателя | |
quote_item - это статья заказа | |
quote_item_option - это опция, выбранная покупателем при заказе настраиваемого товара | |
quote_payment - это данные о способе оплате и его параметрах для заказа | |
quote_shipping_rate - это тарифы доставки для заказа |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gradlew clean |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ln -s /usr/bin/nodejs /usr/bin/node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install php5-xdebug | |
sudo php5enmod xdebug | |
sudo service php5.6-fpm restart | |
open /etc/php/5.6/mods-available/xdebug.ini & add lines: | |
zend_extension=xdebug.so | |
xdebug.remote_autostart=on | |
xdebug.remote_enable=on | |
xdebug.remote_handler="dbgp" | |
xdebug.remote_host="127.0.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.Install | |
sudo add-apt-repository ppa:gophers/archive | |
sudo apt update | |
sudo apt-get install golang-go | |
2. Insert path to ~/.bashrc | |
#Golang variables | |
export GOROOT=/usr/lib/go | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin | |
3. Apply changes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin close($color, $size: 30px) { | |
position: relative; | |
display: inline-block; | |
width: $size; | |
height: $size; | |
border: 0; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Start reindex | |
php bin/magento indexer:reindex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker stop $(docker container ls -a -q) && docker system prune -a -f --volumes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!global._babelPolyfill) { | |
import 'babel-polyfill'; | |
} |