diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 16:37:49 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 16:37:49 +0100 |
commit | 1407ed37666d60bb27f964feeabadb8f5ca07cd8 (patch) | |
tree | 3aef1cf752507239c4dbdeb6d5bad9d20ce997ac /docker-entrypoint.sh | |
parent | b0d9d60933882b57517ebddc5b7f81bcac953adc (diff) |
Experiment with putting collectstatic and superuser in initial build
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 2b17530..6c3efca 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 |