-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
92 lines (92 loc) · 1.98 KB
/
config.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"applications": [
{
"name": "thingmill/discord-bot",
"path": "~/faustino/maurice-cronauer/",
"scripts": {
"deploy": [
"git pull origin master",
"pm2 restart thingmill.bot"
]
}
},
{
"name": "thingmill/web",
"path": "~/faustino/enrique-burnum",
"scripts": {
"deploy": [
"git pull origin master",
"pm2 restart thingmill.web"
]
}
},
{
"name": "retrobox/docs",
"path": "~/faustino/amber-valido",
"scripts": {
"deploy": [
"git pull origin master"
]
}
},
{
"name": "retrobox/api",
"path": "~/faustino/song-rostad",
"scripts": {
"deploy": [
"rm -f composer.lock",
"git pull origin master",
"composer_php7.4 install",
"php-7.4 vendor/bin/phinx migrate",
"env APP_TEST=1 php-7.4 vendor/bin/phinx migrate"
]
}
},
{
"name": "retrobox/web",
"path": "~/faustino/dewitt-bellish",
"scripts": {
"deploy": [
"git pull origin master",
"yarn",
"yarn run build",
"pm2 restart retrobox.web"
]
}
},
{
"name": "retrobox/admin",
"path": "~/faustino/klara-musch",
"scripts": {
"deploy": [
"git pull origin master",
"yarn install",
"yarn run build"
]
}
},
{
"name": "retrobox/ws",
"path": "~/faustino/odell-compiseno",
"scripts": {
"deploy": [
"git pull origin master",
"yarn install",
"pm2 restart retrobox.ws"
]
}
},
{
"name": "retrobox/worker",
"path": "~/faustino/milan-kindell",
"scripts": {
"deploy": [
"rm -f composer.lock",
"git pull origin master",
"composer_php7.4 install",
"pm2 restart retrobox.worker"
]
}
}
]
}