Answers for "djnago add superuser"

24

django admin create superuser

$ python manage.py createsuperuser
Posted by: Guest on May-28-2020
0

django create superuser from script

from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User

class Command(BaseCommand):

    def handle(self, *args, **options):

        # The magic line
        User.objects.create_user(username= 'rmx',
                                email='[email protected]',
                                password='rmx55',
                                is_staff=True,
                                is_active=True,
                                is_superuser=True
        )
Posted by: Guest on March-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language