Created
September 7, 2009 11:44
-
-
Save Voker57/182314 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Reploy example, see http://bitcheese.net/wiki/reploy/examples | |
require 'reploy' | |
Reploy.load(:host => "example.com", | |
:user => "user", | |
:path => "/var/www/example.com", | |
:recipes => ["git", "merb", "rsync"], | |
:copy => [["config/database.yml","config"]], | |
:store_backups => false, | |
:merb => { :host => "127.0.0.1", | |
:port => "4000", | |
:environment => "production", | |
:adapter => "thin" | |
}; | |
:git => { :from => "git://git.myrepo.org/site.git"} | |
) | |
task :deploy => ["reploy:merb:deploy"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment