workaround for #270
authorBryan <btbonval@gmail.com>
Tue, 14 Jan 2014 22:26:20 +0000 (17:26 -0500)
committerBryan <btbonval@gmail.com>
Tue, 14 Jan 2014 22:26:20 +0000 (17:26 -0500)
fabfile.py

index e5999760cd4c79399e3065f85e2f2fe818d2d06c..9fb33b6371ed7d806009159e9c0494fd2a3bcaaf 100644 (file)
@@ -63,7 +63,7 @@ def syncdb():
     """
     Sync Database
     """
-    virtenv_exec('{0}/manage.py syncdb --migrate'.format(env.code_root))
+    virtenv_exec('{0}/manage.py syncdb --migrate --noinput'.format(env.code_root))
 
 
 ####### Collect Static Files
@@ -265,6 +265,7 @@ def first_deploy():
     fetch_usde()
     import_usde()
     start_supervisord()
+    print "You should run `manage.py createsuperuser` in the virtual environment"
 
 
 @task