forked from TheHamkerCat/LunaChatBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
39 lines (39 loc) · 1008 Bytes
/
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
{
"name": "Luna The Chat Bot",
"description": "Just another Telegram AI chat bot written in Python using Pyrogram.",
"repository": "https://github.com/TheHamkerCat/LunaChatBot",
"keywords" : [
"python",
"ai-bot",
"telegram-ai-bot",
"telegram-bot",
"pyrogram",
"arq"
],
"stack": "heroku-20",
"env": {
"bot_token": {
"description": "Your Bot's Api Token ,Get it from @BotFather",
"required": true
},
"ARQ_API_KEY": {
"description": "Get this from @ARQRobot",
"required": true
},
"LANGUAGE": {
"description": "Language of Chat Bot ,list --> https://py-googletrans.readthedocs.io/en/latest/#googletrans-languages",
"value": "en",
"required": true
},
"ARQ_API_BASE_URL": {
"description": "ARQ URL ,Don't Change It",
"value": "https://thearq.tech",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}