Skip to content

Commit

Permalink
Add admin user and solve email format
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvallejosdev committed Jan 29, 2024
1 parent 59edc5f commit 032297e
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 @@ -6,7 +6,7 @@ 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('admin', 'todoapp19573')"
python manage.py shell -c "from django.contrib.auth import get_user_model; get_user_model().objects.create_user('admin@todo.com', 'todoapp19573')"
python manage.py collectstatic --no-input
python manage.py migrate

Expand Down

0 comments on commit 032297e

Please sign in to comment.