From 0277502e470e791480701c3358617e34e9c440d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Gremaud?= Date: Fri, 17 Jul 2026 18:10:37 +0200 Subject: [PATCH] fix: make cron each minute --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b03b8d3..6622337 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PORT ?= 8000 SERVICE := osiris UNIT_FILE := /etc/systemd/system/$(SERVICE).service REMINDER_SH := $(PROJECT_DIR)/deploy/send-reminders.sh -CRON_SCHED ?= */10 * * * * +CRON_SCHED ?= * * * * * CRON_LOG ?= $(PROJECT_DIR)/reminders.log MANAGE := $(UV) run python manage.py