-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
42 lines (42 loc) · 1.53 KB
/
app.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
{
"name": "mclauncher",
"env": {
"INSTANCE_ZONE": {
"description": "Compute Engine zone where you run your minecraft server.",
"required": true
},
"INSTANCE_NAME": {
"description": "Instance name running your minecraft server on Compute Engine.",
"required": true
},
"SHUTTER_AUTHORIZED_EMAIL": {
"description": "Email of service account which calls /shutter endpoint periodically. Typically, this service account is specified on Cloud Scheduler",
"required": true
},
"FIREBASE_CREDENTIALS_JSON": {
"description": "JSON of firebase service account which is used to access Firebase Authentication and Firestore.",
"required": true
},
"FIREBASE_CONFIG_JSON": {
"description": "Firebase configuration as a JSON format.",
"required": true
},
"TITLE": {
"description": "Title used at index.html. [mclauncher]",
"required": false
},
"WEB_CONCURRENCY": {
"description": "Number of Uvicorn's worker processes. [4]",
"required": false
},
"SHUTTER_COUNT_TO_SHUTDOWN": {
"description": "If /shutter counts a streak of this number that your Minecraft server is not connected, the server would be shutted down. [2]",
"required": false
}
},
"options": {
"allow-unauthenticated": true,
"memory": "256Mi",
"cpu": "1"
}
}