CapistranoDbTasks |
Add database AND assets tasks to capistrano to a Rails project. It only works with capistrano 3. Older versions until 0.3 works with capistrano 2.
Currently
- It only supports mysql and postgresql (both side remote and local)
- Synchronize assets remote to local and local to remote
Commands mysql, mysqldump (or pg_dump, psql), bzip2 and unbzip2 (or gzip) must be in your PATH
Feel free to fork and to add more database support or new tasks.
Install
Add it as a gem:
gem "capistrano-db-tasks", require: false
Add to config/deploy.rb:
require 'capistrano-db-tasks'
set :rails_env, "production"
set :db_local_clean, true
set :db_remote_clean, true
set :db_ignore_tables, []
set :db_ignore_data_tables, []
set :db_dump_dir, "./db"
set :assets_dir, %w(public/assets public/att)
set :local_assets_dir, %w(public/assets public/att)
set :locals_rails_env, "production"
set :disallow_pushing, true
set :compressor, :bzip2
Add to .gitignore
/db/*.sql
How to install bzip2 on Windows
Available tasks
app:local:sync || app:pull # Synchronize your local assets AND database using remote assets and database
app:remote:sync || app:push # Synchronize your remote assets AND database using local assets and database
assets:local:sync || assets:pull # Synchronize your local assets using remote assets
assets:remote:sync || assets:push # Synchronize your remote assets using local assets
db:local:sync || db:pull # Synchronize your local database using remote database data
db:remote:sync || db:push # Synchronize your remote database using local database data
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 tests
Copyright (c) 2009 [Sébastien Gruhier - XILINUS], released under the MIT license