-
Notifications
You must be signed in to change notification settings - Fork 506
/
app.json
82 lines (81 loc) · 2.58 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
{
"name": "Save Restricted Content Bot master-v1 branch",
"description": "Save Restricted Content Bot by Team SPY",
"logo": "https://lh3.googleusercontent.com/-HPcn7AqepNg/AAAAAAAAAAI/AAAAAAAAAAA/ALKGfknb1BkQiq-8_KUVOYcNAJ4swKivDQ/photo.jpg",
"keywords": ["python3", "telegram", "MusicBot", "telegram-bot", "pyrogram"],
"repository": "https://github.com/devgaganin/save_restricted-content-telegram-bot-repo",
"success_url": "https://devgagan.in",
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": "your_api_id_here",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": "your_api_hash_here",
"required": true
},
"BOT_TOKEN": {
"description": "A Bot's token from Botfather",
"value": "your_bot_token_here",
"required": true
},
"MONGO_DB": {
"description": "Get a MongoDB URL from https://cloud.mongodb.com.",
"value": "your_mongodb_url_here",
"required": true
},
"OWNER_ID": {
"description": "The user ID of the user whom you would like to add as OWNER.",
"value": "owner_user_id_here",
"required": true
},
"FREEMIUM_LIMIT": {
"description": "Batch size for free users",
"value": "0",
"required": true
},
"PREMIUM_LIMIT": {
"description": "Batch size for premium users",
"value": "500",
"required": true
},
"STRING": {
"description": "Enter premium account session string if you want to allow the paid users to upload upto 4GB",
"value": "",
"required": false
},
"WEBSITE_URL": {
"description": "Enter shortener website domain eg upshrink.com",
"value": "upshrink.com",
"required": false
},
"AD_API": {
"description": "Batch size for premium users",
"value": "52b4a2cf4687d81e7d3f8f2b7bc2943f618e78cb",
"required": false
},
"SUDO_USERS": {
"description": "Other Admins' IDs (optional)",
"value": "",
"required": false
},
"CHANNEL_ID": {
"description": "Enter Channel ID (-100) and make bot admin there",
"value": "channel_id_here",
"required": true
},
"LOG_GROUP": {
"description": "Enter Log Channel/Group ID (-100) and make bot admin there",
"value": "log_group_id_here",
"required": true
}
},
"buildpacks": [
{ "url": "heroku/python" },
{ "url": "heroku/nodejs" },
{ "url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git" }
],
"stack": "container"
}