Captain Ezio commited on
Commit
8cadd1a
·
2 Parent(s): 9b91c54 e7fe7e1

Merge branch 'main' of https://github.com/Gojo-Bots/Gojo_Satoru

Browse files
Files changed (1) hide show
  1. app.json +125 -127
app.json CHANGED
@@ -1,128 +1,126 @@
1
  {
2
- "name": "Gojo_Satoru",
3
- "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.",
4
- "logo" : "https://te.legra.ph/file/633bd27c1607fe98920b6.jpg",
5
- "keywords": [
6
- "telegram bot",
7
- "group bot",
8
- "group",
9
- "manager",
10
- "Gojo",
11
- "Anime"
12
- ],
13
- "repository": "https://github.com/Gojo-Bots/Gojo_Satoru",
14
- "success_url": "https://t.me/GojoSuperbot",
15
- "env": {
16
- "BOT_TOKEN": {
17
- "description": "Your telegram bot token, get from @Botfather in telegram.",
18
- "required": true,
19
- "value": ""
20
- },
21
- "API_ID": {
22
- "description": "Get API_ID from my.telegram.org, used for pyrogram base.",
23
- "required": true,
24
- "value": ""
25
- },
26
- "API_HASH": {
27
- "description": "Get API_HASH from my.telegram.org, used for pyrogram base.",
28
- "required": true,
29
- "value": ""
30
- },
31
- "DB_URI": {
32
- "description": "Your MongoDB connection string.",
33
- "required": true,
34
- "value": ""
35
- },
36
- "DB_NAME": {
37
- "description": "Your MongoDB database name.",
38
- "required": false,
39
- "value": ""
40
- },
41
- "OWNER_ID": {
42
- "description": "Your user ID as an integer.",
43
- "required": false,
44
- "value": "1344569458"
45
- },
46
- "SUPPORT_GROUP": {
47
- "description": "Your Telegram support group chat username where users can contact in case of a problem..",
48
- "required": false,
49
- "value": "gojo_bots_network"
50
- },
51
- "MESSAGE_DUMP": {
52
- "description": "Event logs channel where bot will send updates.",
53
- "required": true,
54
- "value": ""
55
- },
56
- "PREFIX_HANDLER": {
57
- "description": "Something like '/' to execute commands...Don't give a comma or anything after 1 handler just give and space then enter second hand;ler",
58
- "required": false,
59
- "value": "/ ! $"
60
- },
61
- "DEV_USERS": {
62
- "description": "ID of users who are Devs of your bot. Use space to separate values",
63
- "required": false,
64
- "value": ""
65
- },
66
- "SUPPORT_CHANNEL": {
67
- "description": "Channel where bot updates will be posted!",
68
- "required": false,
69
- "value": "gojo_bots_network"
70
- },
71
- "SUDO_USERS": {
72
- "description": "A space-separated list of user IDs who you want to assign as sudo users.",
73
- "required": false,
74
- "value": ""
75
- },
76
- "WHITELIST_USERS": {
77
- "description": "A space-separated list of user IDs whitelisted, cannot be restricted.",
78
- "required": false,
79
- "value": ""
80
- },
81
- "GENIUS_API" : {
82
- "description": "Your Lyrics Genius Api Token. To fetch lyrics of songs",
83
- "required": false,
84
- "value": ""
85
- },
86
-
87
- "BDB_URI": {
88
- "description": "Your Mongodb uri different from the previous one to store more info",
89
- "required": false,
90
- "value": ""
91
- },
92
- "TIME_ZONE": {
93
- "description": "Your time zone",
94
- "required": false,
95
- "value": "Asia/Kolkata"
96
- },
97
- "RMBG_API" : {
98
- "description": "Your removebackground api to remove the background",
99
- "required": false,
100
- "value": ""
101
- },
102
- "WORKERS": {
103
- "description": "Number of workers to run the bot.",
104
- "required": false,
105
- "value": "8"
106
- },
107
- "ENV": {
108
- "description": "Setting this to ANYTHING will enable environment variables. Leave it as it is",
109
- "required": true,
110
- "value": "ANYTHING"
111
- }
112
- },
113
- "buildpacks": [
114
- {
115
- "url":"https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
116
- },
117
- {
118
- "url": "https://github.com/chrismytton/heroku-buildpack-jq"
119
- },
120
- {
121
- "url": "heroku/python"
122
- },
123
- {
124
- "url": "heroku-community/git"
125
- },
126
- ]
127
- }
128
-
 
1
  {
2
+ "name": "Gojo_Satoru",
3
+ "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.",
4
+ "logo": "https://te.legra.ph/file/633bd27c1607fe98920b6.jpg",
5
+ "keywords": [
6
+ "telegram bot",
7
+ "group bot",
8
+ "group",
9
+ "manager",
10
+ "Gojo",
11
+ "Anime"
12
+ ],
13
+ "repository": "https://github.com/Gojo-Bots/Gojo_Satoru",
14
+ "success_url": "https://t.me/GojoSuperbot",
15
+ "env": {
16
+ "BOT_TOKEN": {
17
+ "description": "Your Telegram bot token, obtained from @BotFather.",
18
+ "required": true,
19
+ "value": ""
20
+ },
21
+ "API_ID": {
22
+ "description": "Your API_ID from my.telegram.org, required for Pyrogram.",
23
+ "required": true,
24
+ "value": ""
25
+ },
26
+ "API_HASH": {
27
+ "description": "Your API_HASH from my.telegram.org, required for Pyrogram.",
28
+ "required": true,
29
+ "value": ""
30
+ },
31
+ "DB_URI": {
32
+ "description": "Your MongoDB connection string.",
33
+ "required": true,
34
+ "value": ""
35
+ },
36
+ "DB_NAME": {
37
+ "description": "Your MongoDB database name.",
38
+ "required": false,
39
+ "value": ""
40
+ },
41
+ "OWNER_ID": {
42
+ "description": "Your Telegram user ID as an integer.",
43
+ "required": false,
44
+ "value": "1344569458"
45
+ },
46
+ "SUPPORT_GROUP": {
47
+ "description": "Your Telegram support group username for user assistance.",
48
+ "required": false,
49
+ "value": "gojo_bots_network"
50
+ },
51
+ "MESSAGE_DUMP": {
52
+ "description": "Channel where bot will send logs and updates.",
53
+ "required": true,
54
+ "value": ""
55
+ },
56
+ "PREFIX_HANDLER": {
57
+ "description": "Prefix(es) for bot commands, separated by space (e.g., '/ ! $').",
58
+ "required": false,
59
+ "value": "/ ! $"
60
+ },
61
+ "DEV_USERS": {
62
+ "description": "Space-separated list of user IDs for bot developers.",
63
+ "required": false,
64
+ "value": ""
65
+ },
66
+ "SUPPORT_CHANNEL": {
67
+ "description": "Channel where bot updates will be posted.",
68
+ "required": false,
69
+ "value": "gojo_bots_network"
70
+ },
71
+ "SUDO_USERS": {
72
+ "description": "Space-separated list of user IDs to assign as sudo users.",
73
+ "required": false,
74
+ "value": ""
75
+ },
76
+ "WHITELIST_USERS": {
77
+ "description": "Space-separated list of user IDs who are whitelisted.",
78
+ "required": false,
79
+ "value": ""
80
+ },
81
+ "GENIUS_API": {
82
+ "description": "Your Genius API token to fetch song lyrics.",
83
+ "required": false,
84
+ "value": ""
85
+ },
86
+ "BDB_URI": {
87
+ "description": "Additional MongoDB URI to store extra information.",
88
+ "required": false,
89
+ "value": ""
90
+ },
91
+ "TIME_ZONE": {
92
+ "description": "Your time zone (e.g., 'Asia/Kolkata').",
93
+ "required": false,
94
+ "value": "Asia/Kolkata"
95
+ },
96
+ "RMBG_API": {
97
+ "description": "Your Remove.bg API key to remove image backgrounds.",
98
+ "required": false,
99
+ "value": ""
100
+ },
101
+ "WORKERS": {
102
+ "description": "Number of workers to run the bot.",
103
+ "required": false,
104
+ "value": "8"
105
+ },
106
+ "ENV": {
107
+ "description": "Set this to any non-empty value to enable environment variables.",
108
+ "required": true,
109
+ "value": "ANYTHING"
110
+ }
111
+ },
112
+ "buildpacks": [
113
+ {
114
+ "url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
115
+ },
116
+ {
117
+ "url": "https://github.com/chrismytton/heroku-buildpack-jq"
118
+ },
119
+ {
120
+ "url": "heroku/python"
121
+ },
122
+ {
123
+ "url": "heroku-community/git"
124
+ }
125
+ ]
126
+ }