自動化無しに生活無し

WEB開発関係を中心に備忘録をまとめています

Djangoのcreatesuperuserでインタラクティブシェルを省略する。

thumbnail

python manage.py createsuperuserで管理ユーザーをつくることができるが、その後のインタラクティブシェルの入力がめんどくさい。

そこで、環境変数を使ってインタラクティブシェルを省略する。

更に、エイリアスを使ってコマンド入力も簡略化させる。

# createsuperuser の自動化

export DJANGO_SUPERUSER_USERNAME="asahina"
export DJANGO_SUPERUSER_EMAIL="asahina@asahina.com"
export DJANGO_SUPERUSER_PASSWORD="seiya0723"

alias django_createsuperuser="python manage.py createsuperuser --noinput"
スポンサーリンク