capistrano2.5使用

阅读更多

gem install capistrano

到项目目录中运行

capify  .

会自动产生

 ./Capfile
./config/deploy.rb   #主配置文件

 

set :application, "numed_collection"
set :repository, "svn://×.×.×.×/numed_collection"
set :deploy_to, "/data/www"
set :scm, :subversion
set :user,"root"
set :use_sudo, false
role :app, "*.*.*.*"
role :web, "*.*.*.*"
role :db,  "*.*.*.*", :primary => true
 


如果用的是普通用户,则把set :user_sudo取消。

 

cap deploy

 cap deploy:setup


你可能感兴趣的:(capistrano,SVN,subversion,Web)