public
Description: Automate your wordpress deploys with capistrano and git
Homepage: http://www.jestro.com
Clone URL: git://github.com/jestro/wordpress-capistrano.git
document
jnewland (author)
Mon Nov 17 17:50:13 -0800 2008
commit  8dc7b13698e47a7f358d4d052e4783a614ad6414
tree    ffe4b5af48df3a707395d56852b282de21001db4
parent  641bba56b726079f702c59978be38ec5cea651bb
...
20
21
22
23
 
 
 
24
25
26
...
20
21
22
 
23
24
25
26
27
28
0
@@ -20,7 +20,9 @@ h2. Setup
0
 * Create a theme in @themes@
0
 * Drop your plugins in @plugins@
0
 * Update @config/wp-config.php@
0
-* Adjust the @@
0
+* Adjust the settings at the top of @config/deploy.rb@
0
+* @cap deploy:setup@
0
+* @cap deploy@
0
 
0
 h3. Switching Wordpress Versions
0
 
...
7
8
9
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
12
13
...
7
8
9
 
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
0
@@ -7,7 +7,22 @@ set :application, "wordpress-capistrano-test"
0
 #your repo
0
 set :repository,  "git@github.com:jestro/wordpress-capistrano.git"
0
 
0
-#the folder that your server is configured to serve wordpress from
0
+#the folder wordpress will be deployed to.
0
+#
0
+# NOTE:
0
+#
0
+# Your web server will need to be configured with a DocumentRoot of 
0
+# whatever you set below, with 'current/wordpress' added to the end.
0
+#
0
+# Example:
0
+#
0
+# set :deploy_to, "/var/www/mywordpressapp"
0
+#
0
+# <VirtualHost *:80>
0
+#  ServerName foo.com
0
+#  ServerAlias www.foo.com
0
+#  DocumentRoot /var/www/mywordpressapp/current/wordpress
0
+# </VirtualHost>
0
 set :deploy_to, "/Library/WebServer/Documents/wordpress"
0
 
0
 ##############################################################################

Comments