feat(bot): add reminders topic binding command

This commit is contained in:
2026-03-10 02:01:56 +04:00
parent 29563c24eb
commit 9c4fe5cb52
15 changed files with 321 additions and 121 deletions

View File

@@ -23,9 +23,9 @@ bot_mini_app_allowed_origins = [
"https://household-dev-mini-app-abc123-ew.a.run.app"
]
scheduler_utilities_cron = "0 9 4 * *"
scheduler_rent_warning_cron = "0 9 17 * *"
scheduler_rent_due_cron = "0 9 20 * *"
scheduler_utilities_cron = "0 9 * * *"
scheduler_rent_warning_cron = "0 9 * * *"
scheduler_rent_due_cron = "0 9 * * *"
scheduler_timezone = "Asia/Tbilisi"
scheduler_paused = true
scheduler_dry_run = true

View File

@@ -138,21 +138,21 @@ variable "scheduler_timezone" {
}
variable "scheduler_utilities_cron" {
description = "Cron expression for the utilities reminder scheduler job"
description = "Cron expression for the utilities reminder scheduler job. Daily cadence is recommended because the app filters per household."
type = string
default = "0 9 4 * *"
default = "0 9 * * *"
}
variable "scheduler_rent_warning_cron" {
description = "Cron expression for the rent warning scheduler job"
description = "Cron expression for the rent warning scheduler job. Daily cadence is recommended because the app filters per household."
type = string
default = "0 9 17 * *"
default = "0 9 * * *"
}
variable "scheduler_rent_due_cron" {
description = "Cron expression for the rent due scheduler job"
description = "Cron expression for the rent due scheduler job. Daily cadence is recommended because the app filters per household."
type = string
default = "0 9 20 * *"
default = "0 9 * * *"
}
variable "scheduler_dry_run" {