From a7bf22e68dd17d475678ba5ddfe2b2872f051dcb Mon Sep 17 00:00:00 2001 From: Chris Mitchell Date: Mon, 1 Jun 2015 12:41:18 -0400 Subject: [PATCH] noinput for syncdb to not stop bootstrapper --- scripts/djanguify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/djanguify.py b/scripts/djanguify.py index afa4c73..0ac1efb 100644 --- a/scripts/djanguify.py +++ b/scripts/djanguify.py @@ -81,7 +81,7 @@ def main(): subprocess.call(['python', os.path.join(project_root, 'manage.py'), 'makemigrations'], env=env) subprocess.call(['python', os.path.join(project_root, 'manage.py'), 'migrate'], env=env) else: - subprocess.call(['python', os.path.join(project_root, 'manage.py'), 'syncdb'], env=env) + subprocess.call(['python', os.path.join(project_root, 'manage.py'), 'syncdb', '--noinput'], env=env) subprocess.call(['python', os.path.join(project_root, 'manage.py'), 'collectstatic', '--noinput'], env=env) sys.stdout.write("Please enter the project directory {0}, and run python manage.py createsuperuser and" " python manage.py runserver to start. The admin can be found at localhost:8000/admin. You may also want to set your "