-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
57 lines (57 loc) · 2.9 KB
/
app.json
File metadata and controls
57 lines (57 loc) · 2.9 KB
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
{
"name": "Trafiklab DialogFlow/Google Assistant Demo",
"description": "A demo application showing how to use the Trafiklab SDKs to build a Google Assistant application",
"keywords": [
"Trafiklab",
"ResRobot",
"Google Assistant",
"DialogFlow"
],
"website": "https://trafiklab.se",
"repository": "https://github.com/trafiklab/google-assistant-demo",
"logo": "https://avatars2.githubusercontent.com/u/6614637?s=200&v=4",
"env": {
"APP_DATAPROVIDER": {
"description": "The data provider to use. Choose between 'SL' or 'RESROBOT' without the ''. SL offers detailled data for Stockholm, ResRobot offers data for entire Sweden. More information at https://trafiklab.se/trafiklab",
"required": true,
"value": "RESROBOT"
},
"RESROBOT_TIMETABLE_KEY": {
"description": "Your API key for the Trafiklab ResRobot - Stolptidtabeller 2 API. You can leave this to the default value, but some features for ResRobot will not work. You can change this later. Learn how to create an API key at https://www.trafiklab.se/hur-gor-jag.",
"required": true,
"value": "change-me-to-use-this-api"
},
"RESROBOT_ROUTEPLANNING_KEY": {
"description": "Your API key for the Trafiklab ResRobot Reseplanerare API. You can leave this empty, but some features for ResRobot will not work. You can change this later. Learn how to create an API key at https://www.trafiklab.se/hur-gor-jag.",
"required": true,
"value": "change-me-to-use-this-api"
},
"SL_TIMETABLE_KEY": {
"description": "Your API key for the Trafiklab SL Realtidsinformation 4 API. You can leave this empty, but some features for SL will not work. You can change this later. Learn how to create an API key at https://www.trafiklab.se/hur-gor-jag.",
"required": true,
"value": "change-me-to-use-this-api"
},
"SL_ROUTEPLANNING_KEY": {
"description": "Your API key for the Trafiklab SL Reseplanerare 3.1 API. You can leave this empty, but some features for SL will not work. You can change this later. Learn how to create an API key at https://www.trafiklab.se/hur-gor-jag.",
"required": true,
"value": "change-me-to-use-this-api"
},
"SL_STATIONLOOKUP_KEY": {
"description": "Your API key for the Trafiklab SL Platsuppslag API. You can leave this empty, but some features for SL will not work. You can change this later. Learn how to create an API key at https://www.trafiklab.se/hur-gor-jag.",
"required": true,
"value": "change-me-to-use-this-api"
},
"LOG_CHANNEL": {
"description": "This option is required to redirect log output to Heroku.",
"value": "errorlog"
},
"APP_USER_AGENT": {
"description": "The user agent to use when making requests to Trafiklab.",
"value": "Google-Assistant-Demo"
},
"APP_NAME": {
"description": "The name for your app.",
"value": "Google-Assistant-Demo"
}
}
}