Skip to content

Instantly share code, notes, and snippets.

View asalant's full-sized avatar

Alon Salant asalant

  • Good Eggs
  • San Francisco
View GitHub Profile
@asalant
asalant / setup.sh
Created June 7, 2012 20:41
Good Eggs dev workstation setup with chef soloist
# bash <(curl -s https://raw.github.com/gist/2891426)
read -p "Install Xcode (from the App store) and gcc for Lion (http://github.com/kennethreitz/osx-gcc-installer) and press enter to continue."
# setup your ssh keys for github
if ! [ -e "$HOME/.ssh/id_rsa.pub" ]
then
echo "Generating ssh key..."
read -p "Please enter the email you want to associate with your ssh key: " email
ssh-keygen -t rsa -C "$email"