forked from Shivdwivediji/FileStreamBot-1v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
87 lines (86 loc) · 2.93 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
{
"name": "t3f5",
"description": "A Pyrogram Telegram bot to access Telegram Files via the web.",
"keywords": [
"telegram",
"web",
"pyrogram",
"aiohttp",
"python",
"plugin",
"modular",
"media"
],
"repository": "https://github.com/DeekshithSH/FileStreamBot",
"success_url": "/",
"website": "ftl.deekshith.eu.org",
"stack": "heroku-22",
"env": {
"ENV": {
"description": "Set this to True if you don't want to crash the bot",
"value": "True"
},
"APP_NAME": {
"description": "Copy-Paste the app name that you just typed above."
},
"API_ID": {
"description": "Get this value from https://my.telegram.org"
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org"
},
"BOT_TOKEN": {
"description": "Get this value from @BotFather"
},
"BIN_CHANNEL": {
"description": "The BIN Channel ID. Read the readme for more info about this var"
},
"WORKERS": {
"description": "Number of workers that is to be assigned. Read the readme for more info about this var",
"required": false
},
"PING_INTERVAL": {
"description": "The time in ms you want the servers to be pinged each time to avoid sleeping.",
"required": false
},
"FQDN": {
"description": "Read the readme for more info about this var",
"required": false
},
"DATABASE_URL": {
"description": "MongoDB URI for saving User IDs when they first Start the Bot. We will use that for Broadcasting to them. I will try to add more features related with Database. If you need help to get the URI you can ask in Support Group: https://t.me/linux_repo"
},
"UPDATES_CHANNEL": {
"description": "Update Channel shown with Start Text",
"required": false
},
"FORCE_UPDATES_CHANNEL": {
"description": "Set to True, so every user have to Join update channel to use the bot.",
"value": false
},
"OWNER_ID": {
"description": "Your Telegram User ID"
},
"SESSION_NAME": {
"description": " Session Name for Bot [ Add F2LxBot ]",
"required": false
},
"BANNED_CHANNELS": {
"description": "Put IDs of Banned Channels where bot will not work. You can add multiple IDs & separate with Space.",
"required": false
},
"PAGE_LINK": {
"description": "Your stream link, Return message_id, hash, mime_type as get request",
"required": false
}
},
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}