Skip to content

Commit

Permalink
Create super userd
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvallejosdev committed Jan 29, 2024
1 parent b70a317 commit 436c47e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -o errexit
pip install -r requirements.txt

# How to automate createsuperuser on django
python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.filter(email='admin@todo.com').delete(); User.objects.create_user(email='[email protected]', password='19573')"
python manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.filter(email='matiasvallejosdev@outlook.com').delete(); User.objects.create_superuser(email='[email protected]', password='19573')"

python manage.py collectstatic --no-input
python manage.py migrate
Expand Down

0 comments on commit 436c47e

Please sign in to comment.