summaryrefslogtreecommitdiffstats
path: root/docker-entrypoint.sh
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-06-05 15:35:22 +0100
committerMatthew Lemon <y@yulqen.org>2024-06-05 15:35:22 +0100
commit377459d362bd1d655e347edc94faed79138a029a (patch)
tree8c1ccf9e084d532a8984d01b05f7722c51011a65 /docker-entrypoint.sh
parent85bcae95094b72b637c7c076f4b58cde9d6e0dbb (diff)
Omit collectstatic for debugging
Diffstat (limited to 'docker-entrypoint.sh')
-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