From c9bfeaed26c7c50c4c7580a74c08f826b778e81c Mon Sep 17 00:00:00 2001 From: Viswamedha Nalabotu Date: Fri, 27 Feb 2026 01:02:21 +0000 Subject: [PATCH] Added reset passwords script to auto run for each time watchtower pulls the image --- compose/prod/django/start | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compose/prod/django/start b/compose/prod/django/start index ce1e1a9..252f41f 100644 --- a/compose/prod/django/start +++ b/compose/prod/django/start @@ -23,5 +23,7 @@ for fixture in /app/data/*.json; do python manage.py loaddata "$fixture" done +python manage.py reset_passwords + python manage.py collectstatic --noinput exec daphne -b 0.0.0.0 -p 8000 config.asgi:application