Skip to content

Add capistrano tasks for syncing remote and local database

License

Notifications You must be signed in to change notification settings

mcurtis/capistrano-db-tasks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CapistranoDbTasks

Add database AND assets tasks to capistrano to a Rails project.

Currently

  • It only supports mysql (both side remote and local)
  • Synchronize remote to local and local to remote

Commands mysql, mysqldump, bzip2 and unbzip2 must be in your PATH

Feel free to fork and to add more database support or new tasks.

Install

gem install capistrano-db-tasks

Or add the gem to your Gemfile

    group :development do
      gem 'capistrano-db-tasks', :require => false
    end

Add to config/deploy.rb:

require 'capistrano-db-tasks'

# if you haven't already specified
set :rails_env, "production"

# if you want to remove the dump file after loading
set :db_local_clean, true  

# If you want to import assets, you can change default asset dir (default = system)
# This directory must be in your shared directory on the server
set :assets_dir, %w(public/assets public/att)

# if you want to work on a specific local environment (default = ENV['RAILS_ENV'] || 'development')
set :locals_rails_env, "production"

Available tasks

db:pull      # Synchronize your local database using remote database data
assets:pull  # Synchronize your local assets using remote assets
app:pull     # Synchronize your local assets AND local database using remote assets and database

db:push     # Synchronize the local database to the remote database

Example

cap db:pull
cap production db:pull # if you are using capistrano-ext to have multistages

Contributors

TODO

  • May be change project's name as it's not only database tasks now :)
  • Add synchronization of assets from local to remote
  • Add tests

Copyright (c) 2009 [Sébastien Gruhier - XILINUS], released under the MIT license

About

Add capistrano tasks for syncing remote and local database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%