-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
27 lines (27 loc) · 684 Bytes
/
app.json
File metadata and controls
27 lines (27 loc) · 684 Bytes
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
{
"name": "bedsheets-rest-server",
"env": {
"GOOGLE_AUTH_CLIENT_EMAIL": {
"description": "Email address of the service account you created for Bedsheets."
},
"GOOGLE_AUTH_PRIVATE_KEY": {
"description": "Private key of the service account you created for Bedsheets."
},
"LOG_LEVEL": {
"description": "Verbosity of logs, either: NONE | ERROR | WARN | INFO | TRACE",
"value": "INFO",
"required": false
}
},
"build": {
"skip": false
},
"hooks": {
"prebuild": {
"commands": [
"docker pull bedsheets/rest-server:latest",
"docker tag bedsheets/rest-server:latest $IMAGE_URL"
]
}
}
}