Created
May 13, 2011 17:14
-
-
Save dakatsuka/970922 to your computer and use it in GitHub Desktop.
Capistrano deploy.rb
This file contains hidden or 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
require 'capistrano/ext/multistage' | |
require 'bundler/capistrano' | |
require 'erb' | |
set :application, "app" | |
set :scm, :git | |
set :repository, "git://domain.com/path/to/repository.git" | |
set :deploy_subdir, "/path/to/app" # require https://gist.github.com/970910 to Capfile | |
set :deploy_via, :copy | |
set :use_sudo, false | |
set :bundle_without, [:development, :test] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment