diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-05 15:35:22 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-05 15:35:22 +0100 |
commit | 377459d362bd1d655e347edc94faed79138a029a (patch) | |
tree | 8c1ccf9e084d532a8984d01b05f7722c51011a65 /docker-entrypoint.sh | |
parent | 85bcae95094b72b637c7c076f4b58cde9d6e0dbb (diff) |
Omit collectstatic for debugging
Diffstat (limited to '')
-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 59a45b7..b2b3808 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -9,7 +9,7 @@ echo "Attempting to create superuser..." #python manage.py createsuperuser --noinput || true # Collect static files -python manage.py collectstatic --noinput +#python manage.py collectstatic --noinput # Start Gunicorn exec gunicorn --bind ':8080' --workers 3 ded.wsgi:application |