paratrooper
paratrooper copied to clipboard
Library for creating tasks that deploy to Heroku
This gem was very forward thinking, and I don't know why it isn't the default way to do Heroku deploys. If you look at Heroku's pipelines they essentially do the...
Just a note that while the README says you can do ``` # lib/tasks/deploy.rake namespace :deploy do desc 'Deploy app in production environment' task :production do Paratrooper.deploy("amazing-production-app") do |config| config.maintenance...
Hi There, Just wondered if there is a plan for adding support for dokku Cheers Jimmy Fan
Here's my PR for supporting slug based deploys on Heroku. It required a minor refactoring of `PendingMigrationCheck` to make the interface simpler so you can provide your own `migration_check` class....
We use Paratrooper in our deployment rake tasks. I am in the process of setting up continuous deployment on Codeship however, I'm finding that even when the deployment fails (e.g....
We use a regular git deploy to build a slug on a 'build' app, then push the generated slug using the platform-api around to the various apps in our pipeline....
Refactor PendingMigrationCheck so that #last_deployed_commit is an input instead of lookup. This simplifies PendingMigrationCheck and allows users of the configuration option `migration_check` to have a simpler interface to implement.
Hi, I've got a deploy.rake file that looks like that: ``` ruby require 'paratrooper' namespace :deploy do desc 'Deploy app in production environment' task :production do admin = Paratrooper::Deploy.new("nts-admin", maintenance:...
I just had a look at the latest commit https://github.com/mattpolito/paratrooper/commit/341f9f213de2b1b6a71d807e00ccbc3218d1fabf And followed the various conversations around this, including pull https://github.com/mattpolito/paratrooper/pull/53 As part of my deploy task I tried various options:...