Keybase proof
I hereby claim:
- I am jeroenboersma on github.
- I am srcoder (https://keybase.io/srcoder) on keybase.
- I have a public key whose fingerprint is 85DE 175D C837 2C7D 64E1 7A66 5B1B D648 9492 C40A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Verifying that "jeroenboersma.id" is my Blockstack ID. https://onename.com/jeroenboersma |
#/bin/sh | |
# Configurable | |
remote='origin'; | |
master='master'; | |
days=0; | |
unmerged=0; | |
eval set -- `getopt -l master: -l remote: -l days: -l help -l unmerged -- 'm:?r:?d:?u?h?' "$@"`; |
Magento root plugin doesn't work with the latest Magento 2.3.5-1 so you have to manualy compare the magento/project-communtiy-edtion
with your local installation. Added composer.json
below.
Head over to your project
# before you start, update all packages
composer update
# Switch Magento version
For docker I've some local scripts which I occasionaly use for day-to-day jobs. The reason I don't commit them in the repository is because they're so project specific.
bin/dev setup
workspace/bin
with execute permissions.#!/bin/bash | |
CWD=${PWD}; | |
aws() { | |
docker run --rm -it -v ${HOME}/.aws:/root/.aws -v ${CWD}:/mnt --workdir=/mnt amazon/aws-cli "$@" | |
return $?; | |
} | |
if [ -z "`which jq`" ]; then |
<?php | |
/** | |
* Cleanup images from Magento | |
*/ | |
require 'app/Mage.php'; | |
if (!Mage::isInstalled()) { | |
echo "Application is not installed yet, please complete install wizard first."; | |
exit; |