Add schedule_production.rb
This commit is contained in:
commit
6749568468
1 changed files with 19 additions and 0 deletions
19
schedule_production.rb
Normal file
19
schedule_production.rb
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
#this file sends out kudos and subscriptions emails and stuff lmao
|
||||||
|
|
||||||
|
set :set_path_automatically, false
|
||||||
|
set :cron_log, "#{path}/log/whenever.log"
|
||||||
|
|
||||||
|
# Resend signup emails
|
||||||
|
every 1.day, at: '6:41 am' do
|
||||||
|
rake "admin:resend_signup_emails"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Send kudos notifications
|
||||||
|
every 1.day, at: '9:46 am' do
|
||||||
|
rake "notifications:deliver_kudos"
|
||||||
|
end
|
||||||
|
|
||||||
|
# Send subscription notifications
|
||||||
|
every 1.hour do
|
||||||
|
rake "notifications:deliver_subscriptions"
|
||||||
|
end
|
||||||
Loading…
Reference in a new issue