Skip to content

Instantly share code, notes, and snippets.

View anderles's full-sized avatar
🇺🇦
Talk is cheap, show me the code.

Andrii Boyko anderles

🇺🇦
Talk is cheap, show me the code.
View GitHub Profile
@sergeycherepanov
sergeycherepanov / m1dumper.sh
Last active October 2, 2021 07:30
Mysql Dumpers
#!/bin/bash
#
# headless run: bash <(curl -s -L 'https://bit.ly/m1dumper')
# or
# with specidic dump path: DUMPPATH=/tmp/magento1.sql.gz /bin/bash <(curl -s -L 'https://bit.ly/m1dumper')
set -x
set -e
[[ -f app/etc/local.xml ]] || { echo "Can't locate the 'app/etc/local.xml'"; exit 1; }
@arosenhagen
arosenhagen / magento-code-snippets.md
Last active April 8, 2024 09:21
[magento] - code snippets

Magento Code Snippets

Download extension manually using mage

./mage config-set preferred_state stable
./mage clear-cache
./mage sync
./mage download community Module_Name