[Answered ]-Django LFS 0.10 No default admin user

2👍

Creating a superuser is covered in the Django tutorial.

python manage.py createsuperuser

Looking at LFS installation docs, it appears that you can access the django-admin utility with bin/django, therefore, you can use:

bin/django createsuperuser

Leave a comment