-
Notifications
You must be signed in to change notification settings - Fork 55
/
app.json
69 lines (69 loc) · 2.03 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "Yui",
"description": "Simple Telegram AI Chat bot made using OpenAI and Luna API",
"logo": "https://telegra.ph//file/af53660a0306db2653fe6.jpg",
"keywords": [
"ai",
"Telegram Bot",
"chat bot",
"telegram chat bot"
],
"website": "https://t.me/NexaBotsUpdates",
"repository": "https://github.com/Itz-fork/Yui",
"success_url": "https://t.me/NexaBotsUpdates",
"env": {
"APP_ID": {
"description": "Your APP_ID from my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Your API_HASH from my.telegram.org",
"required": true
},
"ARQ_KEY": {
"description": "Your ARQ API Key. Get it from @ARQRobot",
"required": true
},
"BOT_TOKEN": {
"description": "Your Bot Token From @BotFather",
"required": true
},
"DEFAULT_CHATBOT": {
"description": "The Default chatbot you want to use after OpenAI. Read README for more info.",
"required": false
},
"HEROKU_API": {
"description": "Your Heroku API Key, Read the README for more info",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Your Heroku app name",
"required": true
},
"ON_HEROKU": {
"description": "Set this to True as you're deploying this on Heroku",
"required": true,
"value": "True"
},
"OPENAI_KEY": {
"description": "Your OpenAI API Key, Read the README for more info",
"required": true
},
"OWNER_ID": {
"description": "Your Telegra, Account Id, Read the README for more info",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}