discourse/Brewfile
Nick Ragaz be24d6f48a Update the OS X development documentation
* Remove some outdated information from the guide
* Add scripts/osx_dev to bootstrap a working development environment
* Add a Brewfile to track binary dependencies
2014-01-23 22:34:29 -05:00

22 lines
535 B
Ruby

# Install development dependencies on Mac OS X using Homebrew (http://mxcl.github.com/homebrew)
# ensure that Homebrew's sources are up to date
update
# add this repo to Homebrew's sources
tap homebrew/versions
# install the gcc compiler required for ruby
install apple-gcc42
# you probably already have git installed; ensure that it is the latest version
install git
# install the PostgreSQL database
install postgresql
# install the Redis datastore
install redis
# install headless Javascript testing library
install phantomjs