theseus/config/initializers/good_job.rb
2026-01-22 15:00:40 -05:00

48 lines
1.3 KiB
Ruby

Rails.application.configure do
config.good_job.preserve_job_records = true
config.good_job.enable_cron = Rails.env.production?
config.good_job.execution_mode = :external
config.good_job.cron = {
update_mailing_info: {
cron: "*/5 * * * *",
class: "Warehouse::UpdateMailingInfoJob",
},
update_median_postage_costs: {
cron: "*/30 * * * *",
class: "Warehouse::UpdateMedianPostageCostsJob",
},
update_inventory_levels: {
cron: "*/5 * * * *",
class: "Warehouse::UpdateInventoryLevelsJob",
},
update_cancellations: {
cron: "*/10 * * * *",
class: "Warehouse::UpdateCancellationsJob",
},
update_map_data: {
cron: "*/30 * * * *",
class: "Public::UpdateMapDataJob",
},
sync_skus: {
cron: "*/7 * * * *",
class: "TableSync::SKUSyncJob",
},
sync_orders: {
cron: "*/8 * * * *",
class: "TableSync::OrderSyncJob",
},
usps_pocketwatch: {
cron: "0 5 * * *", # 5:00 UTC = midnight EST
class: "USPS::PaymentAccount::PocketWatchJob",
},
airtable_athena_stickers_etl: {
cron: "*/22 * * * *",
class: "AirtableETL::AthenaStickersETLJob",
},
hcb_welcome_etl: {
cron: "*/23 * * * *",
class: "AirtableETL::HCBWelcomeETLJob",
},
}
end