diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 13:29:33 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 13:29:33 +0100 |
commit | 4891807c395a0dbb3ab7efa2b198048d1b288abe (patch) | |
tree | 9437f7767f36ef8da3bb3f3bfeba565e2bd412b8 | |
parent | 96ff73544773284430d877bd17a06c43a2bf98cd (diff) |
Adds --email to createsuperuser
-rwxr-xr-x | docker-entrypoint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 1cf95db..35419b0 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh cd /app python manage.py migrate -python manage.py createsuperuser --noinput +python manage.py createsuperuser --noinput --email python manage.py collectstatic --noinput exec gunicorn --bind ':8080' --workers 3 ded.wsgi:application |