From 2c7a9c0eb7c7bca7067d32e1837b695ea758d31b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20M=C3=BCllegger?= Date: Mon, 17 Aug 2015 12:32:01 +0200 Subject: [PATCH] Fix instructions on createsuperuser in install docs New migrate command doesn't prompt for creating a superuser. That can be done now with "manage.py createsuperuser". --- docs/install.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index 7380a2b3e..1c25cbade 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -74,9 +74,11 @@ database:: ./manage.py migrate -This will prompt you to create a superuser account for Django. Do that. +Then please create a superuser account for Django:: -Then go ahead and load in a couple users and a test projects:: + ./manage.py createsuperuser + +By now, it is the right time to load in a couple users and a test projects:: ./manage.py loaddata test_data