From 8c1e3b8d3bab487db608c1f9f20da999dac40c9a Mon Sep 17 00:00:00 2001 From: Mariano Coca Date: Thu, 28 Apr 2016 16:29:57 -0300 Subject: [PATCH] Update README.md (#1057) Updated dependency data. Included redis. Specified supported elasticsearch version. --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b82f30044..5f32059e2 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,15 @@ To start developing: 2. Install dependencies: * `bundle install`. * PhantomJS 1.9.8 for [Poltergeist](https://github.com/teampoltergeist/poltergeist) (development and test only) - * ImageMagick for [Paperclip](https://github.com/thoughtbot/paperclip#image-processor). + * Install it in mac with: `brew install phantomjs` + * ImageMagick for [Paperclip](https://github.com/thoughtbot/paperclip#image-processor) + * Install it in mac with: `brew install imagemagick` + * [Redis](http://redis.io/download) is [used](https://github.com/mperham/sidekiq/wiki/Using-Redis) by [sidekiq](http://sidekiq.org/). CDX uses sidekiq as [ActiveJob](http://guides.rubyonrails.org/active_job_basics.html#backends) backend + * Install it in mac with: `brew install redis` + * you can start it with `redis-server --daemonize yes` + * [Elasticsearch](https://www.elastic.co/) is used as the main index for test results. + * We support elasticsearch versions < 2.x + * Install it in mac with: `brew install elasticsearch17` 3. Setup development database: `bundle exec rake db:setup`