From 7bce2b896cb3be9f6fbed2b7faaeb198183dd5c7 Mon Sep 17 00:00:00 2001 From: Bryan Date: Tue, 14 Jan 2014 17:26:20 -0500 Subject: [PATCH] workaround for #270 --- fabfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.25.1