diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-06-05 15:36:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 15:36:11 +0100 |
commit | e4fc7c71cdbe173f79416cd7919aa3b35e7673ee (patch) | |
tree | 8c1ccf9e084d532a8984d01b05f7722c51011a65 | |
parent | 85bcae95094b72b637c7c076f4b58cde9d6e0dbb (diff) | |
parent | 377459d362bd1d655e347edc94faed79138a029a (diff) |
Merge pull request #78 from defencedigital/postgres-migration
Omit collectstatic for debugging
-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 |