No commit activity in last 3 years
No release in over 3 years
Tasks to run appllication deploys and db restores for heroku:pg databases
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.13
~> 10.0

Runtime

>= 0.0.5, ~> 0.0
 Project Readme

HerokuRakeDeploy

Provides deploy and db restore tasks for your app

Use the following environmental variables to control the heroku app name to be deployed/restored from:

HEROKU_APPNAME_PRODUCTION
HEROKU_APPNAME_STAGING

Installation

Add this line to your application's Gemfile:

gem 'heroku_rake_deploy', group: :development # No need to include this on production or staging

And then execute:

$ bundle

Or install it yourself as:

$ gem install heroku_rake_deploy

Usage

To see an updated list of tasks and descriptions: bundle exec rake heroku_rake_deploy -T heroku_rake_deploy

rake db:restore                  # Pull Down a copy of the database from the specified heroku environment
rake db:restore:from_local_dump  # Restore from local dump file (defaults to '/tmp/latest.dump' - specify with DUMP_FILE Environmental Variable)
rake db:restore:local            # Erase local development and test database and restore from the local dump file
rake db:restore:production       # Restore a local copy of Heroku's Production Environment database
rake db:restore:staging          # Restore a local copy of Heroku's Staging Environment database
rake deploy                      # Deploy Safely to Heroku
rake deploy:production           # Deploy to Heroku's Production Environment
rake deploy:production:quick     # Quick Deploy to Production, without running migrations
rake deploy:staging:quick        # Quick Deploy to Staging, without running migrations

Dependencies

The db:restores tasks rely on the following gem:

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ldstudios/heroku_rake_deploy.

License

The gem is available as open source under the terms of the MIT License.