diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 15:04:47 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 15:04:47 +0100 |
commit | f380fca75b6d3dac38c6ccc18843309c7ea4c692 (patch) | |
tree | 14871b2b621a8842ef69819c27729c7a567641e6 | |
parent | b13508252c1dd04c991c7942bc999290c18f0daf (diff) |
Trying to remove the superuser line for now
-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 899df63..59a45b7 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -6,7 +6,7 @@ python manage.py migrate # Try to create a superuser, skip if email is already taken echo "Attempting to create superuser..." -python manage.py createsuperuser --noinput || true +#python manage.py createsuperuser --noinput || true # Collect static files python manage.py collectstatic --noinput |