Commit 1aaee8141e00c59b357adb33021a3c4dd25556b4

added base capify files
Capfile
(3 / 0)
  
1load 'deploy' if respond_to?(:namespace) # cap2 differentiator
2Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
3load 'config/deploy'
  
1set :application, "set your application name here"
2set :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
13role :app, "your app-server here"
14role :web, "your web-server here"
15role :db, "your db-server here", :primary => true