public
Description: Automate your wordpress deploys with capistrano and git
Homepage: http://jestro.com
Clone URL: git://github.com/jestro/wordpress-capistrano.git
100644 13 lines (9 sloc) 0.406 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
#the domain name for the server you'll be running wordpress on
set :domain, "localhost"
 
#other domain names your app will respond to (dev.blog.com, etc)
#set :server_aliases, []
 
#the name of this wordpress project
set :application, "wordpress-capistrano-test"
 
#your repo
set :repository, "git@github.com:jestro/wordpress-capistrano.git"
 
require File.join(File.dirname(__FILE__), 'deploy', 'wordpress')