1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

* Tweak that makes the newly generated Capfile and config/deploy.rb be a little more useful.

This commit is contained in:
Lee Hambley 2009-08-27 12:31:42 +01:00
parent 836ac1017c
commit 4ec99f6eda

View file

@ -52,8 +52,8 @@ set :scm, :subversion
role :web, "your web-server here" # Your HTTP server, Apache/etc
role :app, "your app-server here" # This may be the same as your `Web` server
role :db, "your db-server here", :primary => true # This is where Rails migrations will run
role :db, "your backup db-server here"
role :db, "your primary db-server here", :primary => true # This is where Rails migrations will run
role :db, "your slave db-server here"
FILE
}