add after_party task to setup stats
This commit is contained in:
parent
4af8bd47ac
commit
0be246c86b
1 changed files with 11 additions and 0 deletions
11
lib/tasks/deployment/20201006123842_setup_first_stats.rake
Normal file
11
lib/tasks/deployment/20201006123842_setup_first_stats.rake
Normal file
|
@ -0,0 +1,11 @@
|
|||
namespace :after_party do
|
||||
desc 'Deployment task: setup_first_stats'
|
||||
task setup_first_stats: :environment do
|
||||
Stat.update_stats
|
||||
|
||||
# Update task as completed. If you remove the line below, the task will
|
||||
# run with every deploy (or every time you call after_party:run).
|
||||
AfterParty::TaskRecord
|
||||
.create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue