From 238fdb20aaf8a937904c2f046b1a7a8a79489a69 Mon Sep 17 00:00:00 2001
From: Guo Xiang Tan <tgx_world@hotmail.com>
Date: Sun, 24 May 2015 12:33:35 +0800
Subject: [PATCH 1/2] Redis is required when migrating the database. [CI SKIP]

---
 docs/DEVELOPER-ADVANCED.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/DEVELOPER-ADVANCED.md b/docs/DEVELOPER-ADVANCED.md
index 2f6b24d2e..26311ff81 100644
--- a/docs/DEVELOPER-ADVANCED.md
+++ b/docs/DEVELOPER-ADVANCED.md
@@ -19,7 +19,8 @@ Note: If you are developing on a Mac, you will probably want to look at [these i
 ## Before you start Rails
 
 1. `bundle install`
-2. `bundle exec rake db:create db:migrate db:test:prepare db:seed_fu`
+2. Start up Redis by running `redis-server`
+3. `bundle exec rake db:create db:migrate db:test:prepare db:seed_fu`
 4. Try running the specs: `bundle exec rake autospec`
 5. `bundle exec rails server`
 

From 4bfbc38034bbdf14a666fb086c414c49544dc657 Mon Sep 17 00:00:00 2001
From: Guo Xiang Tan <tgx_world@hotmail.com>
Date: Sun, 24 May 2015 12:33:56 +0800
Subject: [PATCH 2/2] Remove command to run seed_fu. [CI SKIP]

`SeedFu.seed` is called when migrating the database.
---
 docs/DEVELOPER-ADVANCED.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/DEVELOPER-ADVANCED.md b/docs/DEVELOPER-ADVANCED.md
index 26311ff81..3d6f81a79 100644
--- a/docs/DEVELOPER-ADVANCED.md
+++ b/docs/DEVELOPER-ADVANCED.md
@@ -20,7 +20,7 @@ Note: If you are developing on a Mac, you will probably want to look at [these i
 
 1. `bundle install`
 2. Start up Redis by running `redis-server`
-3. `bundle exec rake db:create db:migrate db:test:prepare db:seed_fu`
+3. `bundle exec rake db:create db:migrate db:test:prepare`
 4. Try running the specs: `bundle exec rake autospec`
 5. `bundle exec rails server`