-
Notifications
You must be signed in to change notification settings - Fork 86
/
game_config.example.json
48 lines (48 loc) · 1.04 KB
/
game_config.example.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
{
"services": [
{
"state": "enabled",
"name": "<NAME_SERVICE_1>"
},
{
"state": "enabled",
"name": "<NAME_SERVICE_1>"
}
...
],
"service_metadata": {
"host_dir": "<PATH_TO_YOUR_SERVICE_DIRECTORY>",
"guest_dir": "/opt/ictf/services"
},
"game_info": {
"num_routers": 20,
"router_public_ip": "<ROUTER_ELASTIC_IP>"
},
"teams": [
{
"name": "<NAME_TEAM_1>",
"url": "<TEAM_1_URL>",
"country": "<3_LETTER_COUNTRY_CODE_FOR_TEAM_1>",
"logo": "",
"email": "<TEAM_1_EMAIL>",
"validated": 1,
"academic_team": 1,
"id": 1,
"flag_token": "<TEAM_1_TOKE_20_RANDOM_CHARS>",
"organizer_hosted": true
},
{
"name": "<NAME_TEAM_2>",
"url": "<TEAM_2_URL>",
"country": "<3_LETTER_COUNTRY_CODE_FOR_TEAM_2>",
"logo": "",
"email": "<TEAM_2_EMAIL>",
"validated": 1,
"academic_team": 1,
"id": 2,
"flag_token": "<TEAM_2_TOKE_20_RANDOM_CHARS>",
"organizer_hosted": true
}
...
]
}