diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 16:12:42 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 16:12:42 +0100 |
commit | 0ce6c5b901833971bf42c47679caf495d9ecdba8 (patch) | |
tree | 20a91114d6407e6179cf838226c3c07d1b1547fb /docker-entrypoint.sh | |
parent | eeea8e9b4d129f12e5d9c211a267da5db9d09299 (diff) |
Put back in createsuperuser
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 |