From: Bryan Date: Tue, 14 Jan 2014 22:26:20 +0000 (-0500) Subject: workaround for #270 X-Git-Tag: release-20150131~267 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7bce2b896cb3be9f6fbed2b7faaeb198183dd5c7;p=oweals%2Fkarmaworld.git workaround for #270 --- diff --git a/fabfile.py b/fabfile.py index e599976..9fb33b6 100644 --- a/fabfile.py +++ b/fabfile.py @@ -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