一行代码创建一个新的超级用户(可以用在 Docker 容器上快速完成用户创建)。
python manage.py shell -c "from django.contrib.auth.models import User; User.objects.create_superuser('bestony', 'bestony@linux.com', '123456')"