-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
83 lines (83 loc) ยท 2.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ANNIE X MUSIC",
"description": "ANNIE X MUSIC is a Telegram Music Player Bot built using Python, leveraging Pyrogram and Py-Tgcalls for seamless music streaming.",
"logo": "https://telegra.ph/file/2c6d1a6f78eba6199933a.jpg",
"keywords": [
"python3",
"telegram",
"bot",
"Jarvis",
"MusicBot",
"telegram-bot",
"pyrogram"
],
"env": {
"API_ID": {
"description": "Retrieve this value from https://my.telegram.org.",
"value": "",
"required": true
},
"API_HASH": {
"description": "Retrieve this value from https://my.telegram.org.",
"value": "",
"required": true
},
"BOT_TOKEN": {
"description": "Obtain a bot token from Botfather on Telegram.",
"value": "",
"required": true
},
"MONGO_DB_URI": {
"description": "Get a MongoDB URL from https://cloud.mongodb.com.",
"value": "",
"required": true
},
"OWNER_ID": {
"description": "The user ID of the owner you want to add.",
"value": "",
"required": true
},
"STRING_SESSION": {
"description": "Generate a Pyrogram v2 String Session using @Strings_Gen_Robot on Telegram.",
"value": "",
"required": true
},
"HEROKU_API_KEY": {
"description": "Your Heroku account's API key.",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "The name of your Heroku app.",
"value": "",
"required": false
},
"LOGGER_ID": {
"description": "Your Log Group ID. Add your bot and promote it to admin with full rights.",
"value": "",
"required": true
},
"GPT_API": {
"description": "Your OpenAI GPT API key.",
"value": "",
"required": false
},
"DEEP_API": {
"description": "Your DEEP API key from https://deepai.org/",
"value": "",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"stack": "container"
}