iali
iali

Reputation: 867

Django-nonrel admin superuser in Google App Engine

I have a Django app for which I have created a superuser account for so I can log into django-admin.

This works in local (I can log in).

How do I create a superuser on my appspot.com account on Google App Engine?

Upvotes: 2

Views: 1805

Answers (1)

iali
iali

Reputation: 867

For anyone else with a similar problem: what you need to do is use

manage.py remote createsuperuser
to create a superuser in GAE

Upvotes: 10

Related Questions