How to change admin password of a Django application after deploying it on pivotal cloud foundry?

916 views Asked by At

I have deployed a simple blog application( using tutorials and python buildpack) using Django and deployed it on Pivotal Cloud Foundry. But I am unable to log in using the same admin credentials after it is in the cloud. How can I change the admin superuser credentials?

1

There are 1 answers

3
rob On

This might help you This link in the docs may help you (changepassword)

Or, perhaps you could simply create a new superuser with ./manage.py createsuperuser, and then change the password via the /admin/ panels.