-
Notifications
You must be signed in to change notification settings - Fork 216
/
app.json
126 lines (126 loc) · 3.45 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "Gojo_Satoru",
"description": "Gojo is a Telegram Group management bot made using Pyrogram and Python, which makes it modern and faster than most of the Telegram chat managers.",
"logo": "https://te.legra.ph/file/633bd27c1607fe98920b6.jpg",
"keywords": [
"telegram bot",
"group bot",
"group",
"manager",
"Gojo",
"Anime"
],
"repository": "https://github.com/Gojo-Bots/Gojo_Satoru",
"success_url": "https://t.me/GojoSuperbot",
"env": {
"BOT_TOKEN": {
"description": "Your Telegram bot token, obtained from @BotFather.",
"required": true,
"value": ""
},
"API_ID": {
"description": "Your API_ID from my.telegram.org, required for Pyrogram.",
"required": true,
"value": ""
},
"API_HASH": {
"description": "Your API_HASH from my.telegram.org, required for Pyrogram.",
"required": true,
"value": ""
},
"DB_URI": {
"description": "Your MongoDB connection string.",
"required": true,
"value": ""
},
"DB_NAME": {
"description": "Your MongoDB database name.",
"required": false,
"value": ""
},
"OWNER_ID": {
"description": "Your Telegram user ID as an integer.",
"required": false,
"value": "1344569458"
},
"SUPPORT_GROUP": {
"description": "Your Telegram support group username for user assistance.",
"required": false,
"value": "gojo_bots_network"
},
"MESSAGE_DUMP": {
"description": "Channel where bot will send logs and updates.",
"required": true,
"value": ""
},
"PREFIX_HANDLER": {
"description": "Prefix(es) for bot commands, separated by space (e.g., '/ ! $').",
"required": false,
"value": "/ ! $"
},
"DEV_USERS": {
"description": "Space-separated list of user IDs for bot developers.",
"required": false,
"value": ""
},
"SUPPORT_CHANNEL": {
"description": "Channel where bot updates will be posted.",
"required": false,
"value": "gojo_bots_network"
},
"SUDO_USERS": {
"description": "Space-separated list of user IDs to assign as sudo users.",
"required": false,
"value": ""
},
"WHITELIST_USERS": {
"description": "Space-separated list of user IDs who are whitelisted.",
"required": false,
"value": ""
},
"GENIUS_API": {
"description": "Your Genius API token to fetch song lyrics.",
"required": false,
"value": ""
},
"BDB_URI": {
"description": "Additional MongoDB URI to store extra information.",
"required": false,
"value": ""
},
"TIME_ZONE": {
"description": "Your time zone (e.g., 'Asia/Kolkata').",
"required": false,
"value": "Asia/Kolkata"
},
"RMBG_API": {
"description": "Your Remove.bg API key to remove image backgrounds.",
"required": false,
"value": ""
},
"WORKERS": {
"description": "Number of workers to run the bot.",
"required": false,
"value": "8"
},
"ENV": {
"description": "Set this to any non-empty value to enable environment variables.",
"required": true,
"value": "ANYTHING"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "https://github.com/chrismytton/heroku-buildpack-jq"
},
{
"url": "heroku/python"
},
{
"url": "heroku-community/git"
}
]
}