-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathapp.json
More file actions
97 lines (97 loc) · 3.33 KB
/
app.json
File metadata and controls
97 lines (97 loc) · 3.33 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "ANNIE X MUSIC",
"description": "ANNIE X MUSIC is a powerful and versatile Telegram Music Player Bot built with Python, utilizing Pyrogram and Py-Tgcalls libraries for high-quality group voice chat music streaming. This bot offers seamless playback, custom download server integration, and AI-enhanced features for a premium user experience.",
"logo": "https://telegra.ph/file/2c6d1a6f78eba6199933a.jpg",
"keywords": [
"python3",
"telegram",
"music-bot",
"pyrogram",
"py-tgcalls",
"AnnieXMusic"
],
"env": {
"API_ID": {
"description": "Telegram API ID, available at https://my.telegram.org. Required to connect the bot to Telegram servers.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Telegram API Hash, available at https://my.telegram.org. Required alongside API ID.",
"required": true,
"value": ""
},
"BOT_TOKEN": {
"description": "Bot Token from BotFather after creating your Telegram bot.",
"required": true,
"value": ""
},
"MONGO_DB_URI": {
"description": "MongoDB database connection URI, used for storing user and bot-related data. Get it from https://cloud.mongodb.com.",
"required": true,
"value": ""
},
"OWNER_ID": {
"description": "Your Telegram numeric user ID (use @userinfobot to find it). Multiple IDs can be separated by a space.",
"required": true,
"value": ""
},
"STRING_SESSION": {
"description": "Pyrogram v2 session string. Generate it securely from https://telegram.tools/session-string-generator#pyrogram.",
"value": "",
"required": true
},
"LOGGER_ID": {
"description": "Chat ID of your log group where the bot sends important logs. Make sure the bot is admin in that group.",
"required": true,
"value": ""
},
"COOKIE_URL": {
"description": "Direct raw link (from Batbin or Pastebin) to your YouTube cookies.txt file for better download support.",
"required": true,
"value": ""
},
"API_URL": {
"description": "(Optional) URL of a custom API server used for music downloads or other services.",
"required": false,
"value": ""
},
"VIDEO_API_URL": {
"description": "(Optional) URL of a custom API server used for video downloads or other services.",
"required": false,
"value": ""
},
"API_KEY": {
"description": "(Optional) API Key associated with your custom music download server (used with API_URL).",
"required": false,
"value": ""
},
"DEEP_API": {
"description": "(Optional) DeepAI API key for enabling AI-powered features. Get it from https://deepai.org/.",
"required": false,
"value": ""
},
"HEROKU_API_KEY": {
"description": "Your Heroku account API key, required if you want the bot to support auto-updates or dynamic deployments.",
"required": false,
"value": ""
},
"HEROKU_APP_NAME": {
"description": "The name of your Heroku app. Required if using HEROKU_API_KEY for deployments.",
"required": false,
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"stack": "container"
}