Files
fizzy/config/recurring.yml
T
Jorge Manrubia 9d4dd3b00e Remove "save as draft"
Removes the creating status completely as well as the abandoned cards system. It will
always resume drafts if they exist, for a given collection and user.

https://app.box-car.com/5986089/cards/2489
2025-11-03 09:32:29 +01:00

39 lines
1.1 KiB
YAML

production: &production
# Application functionality: notifications and summaries
deliver_bundled_notifications:
command: "Notification::Bundle.deliver_all_later"
schedule: every 30 minutes
# Application cleanup
auto_postpone_all_due:
class: Card::AutoPostponeAllDueJob
schedule: every hour at minute 50
delete_unused_tags:
class: DeleteUnusedTagsJob
schedule: every day at 04:02
# Operations cleanup and backups
clear_solid_queue_finished_jobs:
command: "SolidQueue::Job.clear_finished_in_batches(sleep_between_batches: 0.3)"
schedule: every hour at minute 12
clear_solid_queue_recurring_executions:
command: "SolidQueue::RecurringExecution.clear_in_batches"
schedule: every hour at minute 52
cleanup_webhook_deliveries:
class: Webhook::CleanupDeliveriesJob
schedule: every 4 hours at minute 51
cleanup_magic_links:
command: "MagicLink.cleanup"
schedule: every 4 hours
sqlite_backups:
class: SQLiteBackupsJob
schedule: every day at 05:02
# Metrics
yabeda_actioncable:
command: "Yabeda::ActionCable.measure"
schedule: every 60 seconds
beta: *production
staging: *production