-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
52 lines (52 loc) · 1.62 KB
/
app.json
File metadata and controls
52 lines (52 loc) · 1.62 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
{
"name": "RestrictedContentDL",
"description": "A Telegram bot to save restricted content from public channels. Developed by ISmartDevs.",
"repository": "https://github.com/TheSmartDevs/RestrictedContentDL",
"keywords": ["telegram", "bot", "pyrogram", "restricted-content"],
"env": {
"API_ID": {
"description": "Telegram API ID from https://my.telegram.org",
"value": "Your_API_ID_Here",
"required": true
},
"API_HASH": {
"description": "Telegram API Hash from https://my.telegram.org",
"value": "Your_API_HASH_Here",
"required": true
},
"BOT_TOKEN": {
"description": "Telegram Bot Token from @BotFather",
"value": "Your_BOT_TOKEN_Here",
"required": true
},
"DEVELOPER_USER_ID": {
"description": "Telegram User ID of the bot developer/owner",
"value": "Your_Dev_User_ID_Here",
"required": true
},
"MONGO_URL": {
"description": "MongoDB connection string (e.g., mongodb://localhost:27017)",
"value": "Your_MONGO_URL_Here",
"required": true
},
"DATABASE_URL": {
"description": "Primary database URL (e.g., PostgreSQL/MySQL)",
"value": "Your_DATABASE_URL_Here",
"required": true
},
"DB_URL": {
"description": "Additional database URL (if applicable)",
"value": "Your_DB_URL_Here",
"required": true
},
"COMMAND_PREFIX": {
"description": "Command prefixes for bot commands (e.g., !|.|^|/)",
"value": "!|.|#|,|/",
"required": true
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}