cat <<EOF | python manage.py shell
from django.contrib.auth import get_user_model
User = get_user_model() # get the currently active user model,
User.objects.filter(username='admin').exists() or \
User.objects.create_superuser('admin', 'admin@example.com', 'pass')
EOF
from django.contrib.auth import get_user_model
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Creates an admin user non-interactively if it doesn't exist"
def add_arguments(self, parser):
parser.add_argument('--username', help="Admin's username")
parser.add_argument('--email', help="Admin's email")
parser.add_argument('--password', help="Admin's password")
def handle(self, *args, **options):
User = get_user_model()
if not User.objects.filter(username=options['username']).exists():
User.objects.create_superuser(username=options['username'],
email=options['email'],
password=options['password'])
create-superuser () {
local username="$1"
local email="$2"
local password="$3"
cat <<EOF | python manage.py shell
from django.contrib.auth import get_user_model
User = get_user_model()
if not User.objects.filter(username="$username").exists():
User.objects.create_superuser("$username", "$email", "$password")
else:
print('User "{}" exists already, not created'.format("$username"))
EOF
}
4条答案
按热度按时间nle07wnf1#
使用
manage.py shell
您可以使用QuerySet API方法检查用户是否存在,如果不存在,则创建用户。此外,将代码放在heredoc中可能更容易:
使用自定义管理命令
另一个更易维护的方法是为Django应用添加一个自定义的management command,修改文档中的例子,编辑
yourapp/management/commands/ensure_adminuser.py
如下:然后,您可以从Bash脚本调用新的自定义命令,如下所示:
e0uiprwp2#
即使您的应用中有自定义的用户模型,这个bash函数也能做到这一点:
这要归功于尤金·雅马什的原创想法。
neekobn83#
你可以使用get_or_create()。2如果它存在,它将不做任何事情,否则它将创建一个。
您必须手动将
is_staff
和is_superuser
设置为True
yhived7q4#
创建两个名为DJANGO_SUPERUSER_USERNAME和DJANGO_SUPERUSER_PASSWORD的环境变量,并选择性地使用所需的值创建DJANGO_SUPERUSER_EMAIL。然后运行以下命令: