I'm a newbie been going through the django-nonrel tutorials and have set up django-nonrel inside of Google App Engine.

I am now trying to create a superuser using:

manage.py createsuperuser --username=joe --email=joe@example.com

I get

Unknown command: 'createsuperuser'
Type 'manage.py help' for usage

When I type manage.py help, I don't see createsuperuser listed.

Help.

link|improve this question

65% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Solved this. For anyone else having the same problem, in order to get admin to work:

1) Ensure that django.contrib.auth is installed_apps section in your settings.py

2) Stop runserver, then createsuperuser using manage.py createsuperuser.
AFTER you've created the superuser, start runserver again.

link|improve this answer
Doesn't work for me. – Honza Pokorny Dec 4 '10 at 17:35
1  
Nice, forgot to stop the server. Guess more people forget that easily – Sam Stoelinga Jan 10 '11 at 19:31
Doesn't work for me. I'm on GoogleAppEngine 1.6.2 with python 2.7.2. – neoneye Feb 13 at 22:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.