-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathapp.json
More file actions
27 lines (27 loc) · 831 Bytes
/
app.json
File metadata and controls
27 lines (27 loc) · 831 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": "My Cool IoT LineBot",
"description": "2021 NCU Smart Campus TA course! So cool!",
"keywords": ["line", "linebot", "python", "flask"],
"env": {
"LINEBOT_CHANNEL_ACCESS_TOKEN": {
"description": "LINE bot Channel access token",
"required": true
},
"LINEBOT_CHANNEL_SECRET": {
"description": "LINE bot Channel secret",
"required": true
},
"MQTT_SCOPE" : {
"description": "MQTT Scope (not required)",
"required": false
},
"MQTT_USERNAME" : {
"description": "MQTT Username (not required)",
"required": false
},
"MQTT_PASSWORD" : {
"description": "MQTT Password (not required)",
"required": false
}
}
}