From 432f9bf5cfc5065dc090c16780e1c055dc890f9b Mon Sep 17 00:00:00 2001 From: Gaurish Sharma Date: Fri, 30 Aug 2013 18:26:59 +0530 Subject: [PATCH] Rake Commands can be chained We can run all three setup related commands in one go, making it easier for people to copy-paste. Also it would be bit faster, I would imagine. --- docs/DEVELOPER-ADVANCED.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/DEVELOPER-ADVANCED.md b/docs/DEVELOPER-ADVANCED.md index 9f6be8df64e..a75068dfe66 100644 --- a/docs/DEVELOPER-ADVANCED.md +++ b/docs/DEVELOPER-ADVANCED.md @@ -19,11 +19,9 @@ 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:migrate` -3. `bundle exec rake db:test:prepare` -4. `bundle exec rake db:seed_fu` -5. Try running the specs: `bundle exec rake autospec` -6. `bundle exec rails server` +2. `bundle exec rake db:migrate db:test:prepare db:seed_fu` +4. Try running the specs: `bundle exec rake autospec` +5. `bundle exec rails server` You should now be able to connect to rails on [http://localhost:3000](http://localhost:3000) - try it out! The seed data includes a pinned topic that explains how to get an admin account, so start there! Happy hacking!