What does this actually do, & what is the default superuser account that is created ?
./manage.py runscript -v 2 create_superuser
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
assuming you have run
syncdb, anddjango.contrib.authis among your apps, this will create a user that has the ‘superuser’ bit set. Such a user implicitly has all permissions, and most usefully, can always log into theadmininterface for your project. You might want to do this if you enableauthsometime later than when you first started your django project (because it turned out you needed auth after all).