fix: make cron each minute

This commit is contained in:
Loïc Gremaud 2026-07-17 18:10:37 +02:00
parent 0de8143aa3
commit 0277502e47
Signed by: Legrems
GPG Key ID: D4620E6DF3E0121D

View File

@ -7,7 +7,7 @@ PORT ?= 8000
SERVICE := osiris SERVICE := osiris
UNIT_FILE := /etc/systemd/system/$(SERVICE).service UNIT_FILE := /etc/systemd/system/$(SERVICE).service
REMINDER_SH := $(PROJECT_DIR)/deploy/send-reminders.sh REMINDER_SH := $(PROJECT_DIR)/deploy/send-reminders.sh
CRON_SCHED ?= */10 * * * * CRON_SCHED ?= * * * * *
CRON_LOG ?= $(PROJECT_DIR)/reminders.log CRON_LOG ?= $(PROJECT_DIR)/reminders.log
MANAGE := $(UV) run python manage.py MANAGE := $(UV) run python manage.py