blob: ce403f78cf263218335b2fb894fcc80209b45f05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
task :deploy do
sh "git push heroku master"
sh "heroku run rake db:migrate --app bootycall"
end
namespace :deploy do
task :log do
sh "heroku logs --tail --app bootycall"
end
end
|