release nouri 1.0.0

This commit is contained in:
2026-04-12 19:18:55 +02:00
parent b0d1cee5f5
commit 325101da99
17 changed files with 769 additions and 45 deletions
+8 -1
View File
@@ -13,4 +13,11 @@ if [ -d /app/bootstrap-data/uploads ] && [ -z "$(ls -A /app/data/uploads 2>/dev/
cp -a /app/bootstrap-data/uploads/. /app/data/uploads/
fi
exec gunicorn --bind 0.0.0.0:8000 --workers 2 --threads 4 wsgi:app
if [ "${NOURI_RUN_REMINDER_WORKER:-1}" = "1" ]; then
(
sleep "${NOURI_REMINDER_START_DELAY:-25}"
python /app/code/scripts/reminder_worker.py --sleep 60
) &
fi
exec gunicorn --bind 0.0.0.0:8000 --workers 2 --threads 4 wsgi:app