Skip to content

Commit 5b77498

Browse files
committed
deploy
1 parent b6997fb commit 5b77498

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Capfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
2+
load 'config/deploy' # remove this line to skip loading any of the default tasks

config/deploy.rb

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
set :application, "gvine"
2+
set :repository, "https://github.com/jrom/gvine.git"
3+
set :deploy_to, "/home/teambox/apps/gvine"
4+
set :deploy_via, :remote_cache
5+
set :branch, "master"
6+
7+
set :user, "teambox"
8+
9+
set :use_sudo, false
10+
ssh_options[:forward_agent] = true
11+
12+
set :scm, :git
13+
14+
role :web, "gvine.co"
15+
role :app, "gvine.co"
16+
role :db, "gvine.co", :primary => true
17+
18+
namespace :deploy do
19+
task :start do ; end
20+
task :stop do ; end
21+
end
22+

0 commit comments

Comments
 (0)