mirror of
https://github.com/discourse/discourse.git
synced 2026-03-03 23:54:20 +08:00
When I was running the dev localy on mac I was getting errors that these were missing. I followed this: https://meta.discourse.org/t/install-discourse-on-macos-for-development/15772?tl=en
18 lines
394 B
Ruby
18 lines
394 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Install development dependencies on Mac OS X using Homebrew (http://mxcl.github.com/homebrew)
|
|
|
|
# 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'
|
|
|
|
brew "pngquant"
|
|
brew "oxipng"
|
|
brew "jhead"
|
|
brew "jpegoptim"
|
|
brew "coreutils"
|