While creating your Django application, you're probably unable to login as the administrator to your site. And this can handicap you since you lose control.
This is a Django x NonRelational Databases limitation
Solution
While creating your superuser, ensure that your server is not running.
Stop your server from running . Ctrl + C for those in local webserver development
Create superuser
python manage.py createsuperuser
Run your webserver
python manage.py runserver
You're good to go.
Top comments (0)