-
Notifications
You must be signed in to change notification settings - Fork 42
/
app.json
41 lines (41 loc) · 1.32 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
{
"name": "SwiftyBot",
"description": "SwiftyBot is an example on how to create a Telegram, Facebook Messenger, and Google Assistant bot with Swift using Vapor.",
"repository": "https://github.com/FabrizioBrancati/SwiftyBot",
"logo": "https://github.com/FabrizioBrancati/SwiftyBot/blob/master/Resources/Icon.png",
"website": "https://https://www.fabriziobrancati.com/SwiftyBot-3/",
"keywords": [
"Swift",
"Vapor",
"Telegram",
"Facebook",
"Messenger",
"Google",
"Assistant",
"Bot"
],
"env": {
"TELEGRAM_SECRET": {
"description": "A secret key that will be used to ensure that only Telegram can call your Telegram bot.",
"generator": "secret"
},
"MESSENGER_SECRET": {
"description": "A secret key that will be used to ensure that only Facebook can call your Facebook Messenger bot.",
"generator": "secret"
},
"MESSENGER_TOKEN": {
"description": "A messenger token that will be created for you by Facebook.",
"required": false
},
"ASSISTANT_SECRET": {
"description": "A secret key that will be used to ensure that only Google can call your Google Assistant bot.",
"generator": "secret"
}
},
"stack": "heroku-16",
"buildpacks": [
{
"url": "https://github.com/FabrizioBrancati/heroku-buildpack.git"
}
]
}