|
Revision 8678, 0.5 kB
(checked in by niku, 5 years ago)
|
|
toror
|
| Line | |
|---|
| 1 | set :application, "twebtter" |
|---|
| 2 | set :repository, "set your repository location here" |
|---|
| 3 | |
|---|
| 4 | # If you aren't deploying to /u/apps/#{application} on the target |
|---|
| 5 | # servers (which is the default), you can specify the actual location |
|---|
| 6 | # via the :deploy_to variable: |
|---|
| 7 | # set :deploy_to, "/var/www/#{application}" |
|---|
| 8 | |
|---|
| 9 | # If you aren't using Subversion to manage your source code, specify |
|---|
| 10 | # your SCM below: |
|---|
| 11 | # set :scm, :subversion |
|---|
| 12 | |
|---|
| 13 | role :app, "your app-server here" |
|---|
| 14 | role :web, "your web-server here" |
|---|
| 15 | role :db, "your db-server here", :primary => true |
|---|
| 16 | |
|---|