-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.jps
76 lines (76 loc) · 2.09 KB
/
manifest.jps
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
{
"jpsType": "install",
"application": {
"name": "RocketMap",
"homepage": "https://github.com/RocketMap/RocketMap/",
"description": "Find all the pokemon in your area... and more!",
"logo": "https://raw.githubusercontent.com/RocketMap/PokemonGo-Map-in-Cloud/master/images/icon-70x70.png",
"settings": {
"fields": [
{
"default": "google",
"type": "radiolist",
"values": {
"google": "Your Google Account",
"ptc": "Your Pokemon Club Account"
},
"hideLabel": true,
"name": "auth"
},
{
"name": "username",
"caption": "User",
"type": "string",
"inputType": "string",
"default": "",
"required": "true"
},
{
"name": "password",
"caption": "Password",
"type": "string",
"inputType": "password",
"default": "",
"required": "true"
},
{
"name": "location",
"caption": "Your Location",
"type": "string",
"default": "429 Castro St, San Francisco, CA 94114",
"required": "true"
},
{
"name": "stepsAway",
"caption": "Steps Away",
"type": "string",
"default": "10",
"required": "true"
},
{
"name": "gmapKey",
"caption": "Google Map API Key",
"type": "string",
"default": "AIzaSyDwvxkpEpEUzXR7qKFAQjYNmOQqkYS2NBU",
"required": "true"
}
]
},
"env": {
"displayName": "Map Server",
"topology": {
"nodes": [
{
"cloudlets": 16,
"nodeGroup": "cp",
"nodeType": "docker",
"docker": {
"image": "frostthefox/rocketmap",
"cmd": "-a \"${settings.auth}\" -u \"${settings.username}\" -p \"${settings.password}\" -l \"${settings.location}\" -st \"${settings.stepsAway}\" -k \"${settings.gmapKey}\" --port 80 -sd 10"
}
}
]
}
}
}
}