1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 11:49:47 +00:00
2017-07-28 10:20:09 +09:00

7 lines
170 B
Ruby

desc "generate api key if missing, return existing if already there"
task "api_key:get" => :environment do
api_key = ApiKey.create_master_key
puts api_key.key
end