public
Description: Capistrano recipe for Panda and MySql
Homepage: http://redwriteshere.com
Clone URL: git://github.com/reddavis/panda_cap.git
panda_cap / Capfile.example
100644 14 lines (10 sloc) 0.362 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
Dir['*.rb'].each { |plugin| load(plugin) }
 
# =============================================================
 
set :application, "Panda"
set :domain, "your domain or ip"
role :app, domain
role :web, domain
role :db, domain, :primary => true
 
set :user, "something with root"
 
set :deploy_to, "/home/"