summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-06-05 15:36:11 +0100
committerGitHub <noreply@github.com>2024-06-05 15:36:11 +0100
commite4fc7c71cdbe173f79416cd7919aa3b35e7673ee (patch)
tree8c1ccf9e084d532a8984d01b05f7722c51011a65
parent85bcae95094b72b637c7c076f4b58cde9d6e0dbb (diff)
parent377459d362bd1d655e347edc94faed79138a029a (diff)
Merge pull request #78 from defencedigital/postgres-migration
Omit collectstatic for debugging
-rwxr-xr-xdocker-entrypoint.sh2
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