diff --git a/tools/run-notification-tasks.sh b/tools/run-notification-tasks.sh new file mode 100644 index 00000000..b51fde90 --- /dev/null +++ b/tools/run-notification-tasks.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +## Seulement sur la production +if [ "$ENVIRONMENT" != "production" ];then + echo "L'envoi des notifications automatiques ne se fait qu'en production" + exit 0; +fi + +echo "Activation des tâches de notification" +python /app/manage.py process_notification_tasks --wet-run