diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 16:46:44 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 16:46:44 +0100 |
commit | de6b99df50afba811add3c5109195dc35319bf27 (patch) | |
tree | 815c303cac4bd64798e935d601d4936b70db3fa7 /docker-entrypoint.sh | |
parent | 1aa13bfb45d1f9c06ea407f25fd4a416b879e164 (diff) |
fix....
Diffstat (limited to 'docker-entrypoint.sh')
-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 6c3efca..2b17530 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 |