Skip to content

Instantly share code, notes, and snippets.

View dwolfhub's full-sized avatar

Daniel Wolf dwolfhub

View GitHub Profile
@dwolfhub
dwolfhub / xdebug-install.sh
Last active May 16, 2017 15:06
Install the latest xdebug for php 7.1 in ubuntu 16 vagrant box with configuration for phpstorm debugging
#!/usr/bin/env bash
cd ~
git clone git://github.com/xdebug/xdebug.git
cd xdebug
phpize
./configure --enable-xdebug
make
sudo make install
@dwolfhub
dwolfhub / transfer_ssm_file.sh
Last active March 19, 2024 20:36 — forked from lukeplausin/transfer_ssm_file.sh
Transfer a file to EC2 SSM instance without using S3 (SSM only)
npm run build-storybook
tar --create --gzip --file storybook.tar.gz storybook-static
INSTANCE_ID=X
# export AWS
# Tab 2:
# < Start session
aws ssm start-session --target $INSTANCE_ID
cd ~