mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
690ad2ae5d
According to https://meta.discourse.org/t/brew-bundle-is-dead/23962 the official replacement for `brew bundle` is homebrew-bundle (https://github.com/Homebrew/homebrew-bundle) and its syntax changed a little bit.
20 lines
474 B
Ruby
20 lines
474 B
Ruby
# Install development dependencies on Mac OS X using Homebrew (http://mxcl.github.com/homebrew)
|
|
|
|
# add this repo to Homebrew's sources
|
|
tap 'homebrew/dupes'
|
|
|
|
# install the gcc compiler required for ruby
|
|
brew 'apple-gcc42'
|
|
|
|
# you probably already have git installed; ensure that it is the latest version
|
|
brew 'git'
|
|
|
|
# install the PostgreSQL database
|
|
brew 'postgresql'
|
|
|
|
# install the Redis datastore
|
|
brew 'redis'
|
|
|
|
# install headless Javascript testing library
|
|
brew 'phantomjs'
|