Skip to content

Commit

Permalink
EOF build.sh fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvallejosdev committed Jan 29, 2024
1 parent c7b90fa commit b70a317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set -o errexit
pip install -r requirements.txt

# How to automate createsuperuser on django
# https://stackoverflow.com/questions/6244382/how-to-automate-createsuperuser-on-django/59467533#59467533
python manage.py shell -c "from django.contrib.auth import get_user_model; get_user_model().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='[email protected]').delete(); User.objects.create_user(email='[email protected]', password='19573')"

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

Expand Down

0 comments on commit b70a317

Please sign in to comment.