Fix null to 0 in aggregate

This commit is contained in:
2025-04-20 03:35:04 +02:00
parent 9b9c25806b
commit 955ea36433
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ services:
&& cd frontend && yarn build && cd ..
&& python manage.py collectstatic --noinput
&& python manage.py migrate
&& uvicorn app.asgi:application --workers 3 --host 0.0.0.0 --port 8000 --lifespan off --loop uvloop --ws websockets"
&& uvicorn app.asgi:application --workers 3 --host 0.0.0.0 --port 8000 --lifespan off --loop uvloop --ws websockets --log-level info"
# celery:
# extends: