-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
38 lines (38 loc) · 1.22 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
{
"name": "Evil Bot",
"description": "The best telegram bot!",
"repository": "https://github.com/Djaler/evil-bot",
"env": {
"TELEGRAM_BOT_TOKEN": {
"description": "Telegram bot token received from BotFather.",
"required": true
},
"FIXER_API_KEY": {
"description": "API key obtained from Fixer.io",
"required": true
},
"LOCATIONIQ_API_KEY": {
"description": "API key obtained from LocationiQ.com",
"required": true
},
"VK_API_KEY": {
"description": "API key for voice message recognition, used by VK Cloud solutions. \"https://mcs.mail.ru/\" Go to the \"Machine learning\"->\"Cloud Voice\" section and generate a service token.",
"required": true
},
"TELEGRAM_BOT_WEBHOOK_URL": {
"description": "A URL of your Heroku app: \"https://<app-name>.herokuapp.com/\". For example, if your app name is \"my-evil-bot\", the URL should be \"https://my-evil-bot.herokuapp.com/\". You can change it later on the app page under \"Settings\" -> \"Reveal Config Vars\".",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
},
{
"plan": "heroku-redis"
}
]
}