mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 14:49:38 +02:00
10 lines
190 B
Ruby
10 lines
190 B
Ruby
|
Rails.application.configure do
|
||
|
config.good_job.enable_cron = true
|
||
|
config.good_job.cron = {
|
||
|
maintenance: {
|
||
|
cron: "0 22 * * *",
|
||
|
class: "DailyExchangeRateJob"
|
||
|
}
|
||
|
}
|
||
|
end
|