-
Notifications
You must be signed in to change notification settings - Fork 0
/
tseroconf_bak.json
43 lines (42 loc) · 1.31 KB
/
tseroconf_bak.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
{
"commands": [{
"cwd": "C:/Windows/System32/inetsrv",
"cmds": [
"appcmd stop site todo_tsero",
"appcmd stop apppool todo_tsero"
]
}, {
"cwd": "C:/projects/ngrxtodo",
"cmds": [
"$tsero deldir C:/inetpub/todo_tsero/1",
"$tsero gitclone https://github.com/drsmog/ngrxtodo.git C:/projects/ngrxtodo",
"git pull origin master",
"npm install"
]
}, {
"cwd": "C:/projects/ngrxtodo/public/todoapp",
"cmds": [
"npm install",
"ng build"
]
}, {
"cwd": "C:/projects/ngrxtodo",
"cmds": [
"$tsero zip C:/projects/ngrxtodo C:/inetpub/todo_tsero/example.zip ignore.json",
"$tsero unzip C:/inetpub/todo_tsero/example.zip C:/inetpub/todo_tsero/1"
]
}, {
"cwd": "C:/inetpub/todo_tsero",
"cmds": [
"rmdir C:\\inetpub\\todo_tsero\\todolink",
"mklink /D C:\\inetpub\\todo_tsero\\todolink C:\\inetpub\\todo_tsero\\1"
]
}, {
"cwd": "C:/Windows/System32/inetsrv",
"cmds": [
"appcmd.exe list apppool",
"appcmd start apppool todo_tsero",
"appcmd start site todo_tsero"
]
}]
}