Last active
August 29, 2015 13:56
-
-
Save adamelso/8942146 to your computer and use it in GitHub Desktop.
Mac Web Developer Setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### | |
### One assumes OS X Mavericks (10.9) is installed. | |
### | |
### By the way, don't rely too heavily on this Gist, this was | |
### written mostly for myself. For me, it was a way of note-taking. | |
### However, eventually I'll have this complete and working. | |
### to be used by others. | |
### | |
### Prequisites | |
### | |
### 1. Download XCode from the App Store. | |
### | |
## Install Command Line Tools | |
xcode-select --install | |
## Should be Ruby 2.0 | |
ruby --version | |
## Install Homebrew - The missing package manager for OS X | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
## Install Ruby Gems | |
for GEM in bundler sass compass foundation capifony | |
do | |
sudo gem install $GEM | |
done | |
## Install PHP 5.5 | |
curl -s http://php-osx.liip.ch/install.sh | bash -s 5.5 | |
# or PHP 5.6 if you prefer | |
#curl -s http://php-osx.liip.ch/install.sh | bash -s 5.6 | |
### | |
### Other Stuff | |
### | |
### 1. Install VirtualBox | |
### | |
### 2. Install Vagrant | |
### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment