-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdeploy.rb
35 lines (28 loc) · 1.15 KB
/
deploy.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#############################################################
# Application
#############################################################
set :application, "narabazi"
set :deploy_to, "collective/narabazi"
#############################################################
# Settings
#############################################################
default_run_options[:pty] = true
ssh_options[:forward_agent] = true
set :use_sudo, false
set :scm_verbose, true
#############################################################
# Servers
#############################################################
set :user, "galligalli01"
set :domain, "182.50.148.1"
server domain, :app, :web
role :db, domain, :primary => true
#############################################################
# Git
#############################################################
set :scm, :git
set :scm_command, "C:\Users\Yeti\AppData\Local\GitHub\PortableGit_8810fd5c2c79c73adcc73fd0825f3b32fdb816e7\bin" #change to my settings
set :local_scm_commander, "git"
set :branch, "master"
set :repository, "[email protected]:sakarp/narabazi.git"
set :deploy_via, :remote_cache