Skip to content

Instantly share code, notes, and snippets.

@kix
kix / deploy.rb
Created October 18, 2012 16:47
Yii Capistrano recipe
set :application, "AppName"
set :repository, "git@github.com:path/toRepo.git"
set :deploy_to, "/app/appname"
set :deploy_via, :copy
set :stage_dir, "config/stages"
set :current_dir , "www"
set :default_stage, "dev"
set :stages, %w(dev testing prod)
set :use_sudo, false