本シリーズのトップページ |
---|
https://qiita.com/robozushi10/items/4559a281d0319eb62c6c |
内容
「python manage.py createsuperuser
」での登録処理のワンライナー.
「参考サイト」のそのまま転載となり申し訳ない.
が、echo で送り付ける内容を変更してやれば応用が利く.
$ echo "from django.contrib.auth.models import User; User.objects.create_superuser('admin', 'admin@example.com', 'admin')" | python manage.py shell"
参考サイト
URL |
---|
https://stackoverflow.com/questions/6244382/how-to-automate-createsuperuser-on-django |