Skip to content

Run Environment Locally:

Brendan Susens-Jackson edited this page Aug 16, 2014 · 2 revisions

First, ensure that you have redis installed. If you do not have redis installed:
OS X, use homebrew. Type:

brew install redis

Ubuntu/Debian:

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make

No redis for Windows... :(

Once you have completed the redis install start redis via:

redis-server

Switch to a new tab in your terminal window (same directory) and type:

rake resque:work QUEUE=sentences

Finally, switch to new tab and start rails (thin) via:

rails s thin

And get ready to party!

Clone this wiki locally