summaryrefslogtreecommitdiff
path: root/lib/tasks/deployment.rake
blob: c3c2d3e00a04ccb530346280b28dff67a2a6fdb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace :deploy do
  desc "deploy to staging server"
  task :staging do
    sh "bundle exec cap staging deploy:migrations"
    sh "curl https://staging.cakeside.com/ > /dev/null"
  end

  desc "deploy to production server"
  task :production do
    sh "bundle exec cap production deploy:migrations"
    sh "curl https://www.cakeside.com/ > /dev/null"
  end
end