Skip to content

Instantly share code, notes, and snippets.

View kylwes's full-sized avatar

Kylian Wester kylwes

View GitHub Profile
@kylwes
kylwes / prep-ncv-env.sh
Created June 2, 2018 13:28 — forked from kevyworks/prep-ncv-env.sh
Prepare Dev Machine for: Node Composer & Laravel Valet
# install brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Terminal Aliases
echo "alias artisan='php $PWD/artisan'" >> ~/.bash_profile
echo "export NVM_DIR=~/.nvm" >> ~/.bash_profile
echo "source $(brew --prefix nvm)/nvm.sh" >> ~/.bash_profile
# update brew
brew update