From 8f3f9f8516b481e2c6f3fb753f7182d13c2a19e5 Mon Sep 17 00:00:00 2001
From: Rowan Decker <Smasher816@gmail.com>
Date: Sat, 29 Mar 2014 18:45:53 -0500
Subject: [PATCH] Update Completion Message

Adds a link to the "MongoDB database import" section of the wiki, as this step must be completed before they can play any levels.

Also adds some whitespace :)
---
 scripts/devSetup/factories.py | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/scripts/devSetup/factories.py b/scripts/devSetup/factories.py
index 1a01950af..af350ac8b 100644
--- a/scripts/devSetup/factories.py
+++ b/scripts/devSetup/factories.py
@@ -61,12 +61,17 @@ class SetupFactory(object):
         chown_directory = self.config.directory.root_dir + os.sep + "coco"
         subprocess.call(chown_command,shell=True,cwd=chown_directory)
 
-        print("Done! If you want to start the server, head into /coco/bin and run ")
+        print("")
+        print("Done! If you want to start the server, head into coco/bin and run ")
         print("1. ./coco-mongodb")
         print("2. ./coco-brunch ")
         print("3. ./coco-dev-server")
         print("NOTE: brunch may need to be run as sudo if it doesn't work (ulimit needs to be set higher than default)")
-        print("Once brunch is done, visit http://localhost:3000!")
+        print("")
+        print("Before can play any levels you must update the database. See the Setup section here:")
+        print("https://github.com/codecombat/codecombat/wiki/Developer-environment#setup")
+        print("")
+        print("Once done visit http://localhost:3000")
     def cleanup(self):
         self.config.directory.remove_tmp_directory()