Skip to content

Instantly share code, notes, and snippets.

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

Andrii Boyko boykore

🇺🇦
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; }
@molotovbliss
molotovbliss / Mb-M2-resources.md
Created March 19, 2018 17:29
Magento2 Resources List; Needing a place to keep a list of all the tools/references used during Magento development.
@ProcessEight
ProcessEight / Testing in Magento 2.md
Last active February 11, 2025 09:03
M2: Notes on setting up PHPUnit and writing/troubleshooting tests in Magento 2
@arosenhagen
arosenhagen / magento-code-snippets.md
Last active March 22, 2025 08:49
[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