-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeployment-config.json.complex.example
73 lines (73 loc) · 2 KB
/
deployment-config.json.complex.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
69
70
71
72
73
{
"Timestamp": "2019-02-07 14:53:17",
"LauncherUpdate": [
{
"BundleInfoURL": "https://example.com/windows/launcher/bundleinfo.json",
"TargetPlatforms": [ "linux" ]
},
{
"BundleInfoURL": "https://example.com/mac/launcher/bundleinfo.json",
"TargetPlatforms": [ "darwin" ]
},
{
"BundleInfoURL": "https://example.com/linux/launcher/bundleinfo.json",
"TargetPlatforms": [ "windows" ]
}
],
"Bundles": [
{
"BundleInfoURL": "https://example.com/testapp/32-bit/bundleinfo.json",
"LocalDirectory": "app",
"TargetPlatforms": [ "386" ]
},
{
"BundleInfoURL": "https://example.com/testapp/64-bit/bundleinfo.json",
"LocalDirectory": "app",
"TargetPlatforms": [ "amd64" ]
},
{
"BundleInfoURL": "https://example.com/java/linux/bundleinfo.json",
"LocalDirectory": "java",
"TargetPlatforms": [ "linux" ]
},
{
"BundleInfoURL": "https://example.com/java/mac/bundleinfo.json",
"LocalDirectory": "java",
"TargetPlatforms": [ "darwin" ]
},
{
"BundleInfoURL": "https://example.com/java/windows/bundleinfo.json",
"LocalDirectory": "java",
"TargetPlatforms": [ "windows" ],
"Tags": [ "msi" ]
},
{
"BundleInfoURL": "https://example.com/testapp/resources-bundleinfo.json",
"BaseURL": "https://media.example.com/testapp-pictures/",
"LocalDirectory": "pictures"
}
],
"Execution": {
"Commands": [
{
"Name": "java\\bin\\javaw",
"Arguments": [ "-Xm1024M", "-jar", "foo.jar" ],
"Env": {
"NEW_ENV": "New env variable.",
"OMIT_ENV": null
},
"TargetPlatforms": [ "windows-386" ]
},
{
"Name": "java/bin/java",
"Arguments": [ "-Xm1024M", "-jar", "foo.jar" ],
"Env": {
"NEW_ENV": "New env variable.",
"OMIT_ENV": null
},
"TargetPlatforms": [ "linux", "darwin" ]
}
],
"LingerTimeMilliseconds": 800
}
}