From 27d1fde8d9c11a4c02aad7704dc939e78ea85bf9 Mon Sep 17 00:00:00 2001 From: Branden Byers Date: Wed, 4 Feb 2015 22:45:58 -0600 Subject: [PATCH 1/2] Update README with mongo server instructions --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 46f1d5b0cf..a3ecb26017 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,9 @@ LINKEDIN_SECRET='LINKEDIN APP SECRET' # Seed your database with the challenges node seed_data/seed.js +# Start the mongo server +mongod + # start the application gulp From ac778b1a5a7d8466a79522639d37c4deb24235fd Mon Sep 17 00:00:00 2001 From: Branden Byers Date: Fri, 6 Feb 2015 00:14:41 -0600 Subject: [PATCH 2/2] Switch order of starting mongo server directions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a3ecb26017..bf5e091c03 100644 --- a/README.md +++ b/README.md @@ -55,12 +55,12 @@ LINKEDIN_SECRET='LINKEDIN APP SECRET' ```bash -# Seed your database with the challenges -node seed_data/seed.js - # Start the mongo server mongod +# Seed your database with the challenges +node seed_data/seed.js + # start the application gulp