-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeploy.json.example
68 lines (68 loc) · 1.74 KB
/
deploy.json.example
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"default" : {
"workspace" : "/temp/shipit/laralabs",
"key" : "c:/users/yournamehere/.ssh/id_rsa",
"repositoryUrl" : "[email protected]:namespace/project.git",
"rsyncDrive" : "/d",
"ignores" : [
".git",
".gitignore",
".gitattributes",
".idea",
".bowerrc",
".vagrant",
"Vagrantfile",
"Homestead.yaml",
"node_modules",
"bower_components",
"shipit.js",
"shipitfile.js",
"tmp",
"doc"
],
"keepReleases" : 2,
"branch" : "master",
"shallowClone" : false,
"composer" : {
"composerCommand": "composer",
"remote": false,
"installFlags" : [
"--no-dev",
"--prefer-source"
]
},
"npm" : {
"remote" : false,
"installFlags": ["--no-bin-links"]
},
"bower" : {
"remote" : false
},
"shared" : {
"dirs" : [
],
"files" : [
".env"
]
},
"laravel": {
"resetDb": false,
"seedDb": false
}
},
"staging" : {
"servers" : "[email protected]",
"deployTo" : "/var/www/vhosts/example.com/staging.example.com",
"url" : "http://staging.example.com",
"branch" : "develop",
"laravel" : {
"resetDb" : false,
"seedDb" : false
}
},
"production" : {
"servers" : "[email protected]",
"deployTo" : "/var/www/vhosts/example.com/httpdocs",
"url" : "http://example.com"
}
}