24 lines
729 B
Python
24 lines
729 B
Python
import uuid
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from accounts.models import User
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = "Creates the installer user"
|
|
|
|
def handle(self, *args, **kwargs): # type: ignore
|
|
self.stdout.write("Checking if installer user has been created...")
|
|
if User.objects.filter(is_installer_user=True).exists():
|
|
self.stdout.write("Installer user already exists")
|
|
return
|
|
|
|
User.objects.create_user(
|
|
username=uuid.uuid4().hex,
|
|
is_installer_user=True,
|
|
password=User.objects.make_random_password(60),
|
|
block_dashboard_login=True,
|
|
)
|
|
self.stdout.write("Installer user has been created")
|