-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
47 lines (47 loc) · 1.18 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
43
44
45
46
47
{
"name": "sportsfreund",
"description": "A chatty bot for information on the winter olympics. Made by WDR/MDR.",
"repository": "https://github.com/wdr-data/sportsfreund",
"addons": ["heroku-postgresql:hobby-dev", "mongolab:sandbox"],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-locale"
}
],
"environments": {
"test": {
"scripts": {
"test-setup": "pipenv install --dev --system",
"test": "./test"
},
"env": {
"FB_PAGE_TOKEN": "mock",
"FB_HUB_VERIFY_TOKEN": "mock",
"DIALOGFLOW_TOKEN": "mock",
"FEED_URL": "mock"
}
}
},
"env": {
"WEB_CONCURRENCY": "4",
"SECRET_KEY": {
"description": "This gets generated",
"generator": "secret"
},
"FB_PAGE_TOKEN": {
"description": "Page token for the Facebook Messenger integration"
},
"FB_HUB_VERIFY_TOKEN": {
"description": "Hub verify token for the Facebook Messenger integration"
},
"DIALOGFLOW_TOKEN": {
"description": "Token for the Dialogflow API"
},
"FEED_URL": {
"description": "URL for JSON data feed"
}
}
}