Skip to content

Instantly share code, notes, and snippets.

View magenx's full-sized avatar
👨‍🍳
magento 2 open source web stack

MagenX magenx

👨‍🍳
magento 2 open source web stack
View GitHub Profile
@magenx
magenx / carding.sh
Last active February 10, 2024 04:52
#!/bin/bash
MAGE_BASE_URL="$1"
MAGE_SKU="$2"
PAYMENT_KEY="$3"
PAYMENT_METHOD="$4"
STORE_VIEW="$5"
CREDIT_CARD="$6"
CREDIT_CARD_CVC="$7"
@magenx
magenx / build.sh
Last active February 23, 2024 05:35
#!/bin/bash
## install docker
dpkg-query -l docker >/dev/null || {
curl -fsSL https://get.docker.com -o get-docker.sh
bash get-docker.sh
mkdir -p ~/.docker/cli-plugins/
curl -SL https://github.com/docker/compose/releases/latest/download/docker-compose-linux-x86_64 \
-o ~/.docker/cli-plugins/docker-compose