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 :)
This commit is contained in:
Rowan Decker 2014-03-29 18:45:53 -05:00
parent f88b7142e4
commit 8f3f9f8516

View file

@ -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()