forked from itsyogieu/Filestreambot-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
136 lines (104 loc) · 3.54 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
127
128
129
130
131
132
133
134
135
136
{
"name": "Adarsh-",
"description": "A Pyrogram Telegram bot to Stream Telegram files to web. @adarshgoel",
"keywords": [
"telegram",
"stream",
"web",
"pyrogram",
"aiohttp",
"python",
"plugin",
"modular",
"media",
"bot"
],
"repository": "https://github.com/adarsh-goel/-pro/",
"success_url": "/",
"logo": "https://i.ibb.co/MnMZ1Sy/download-1.jpg",
"website": "http://adarsh.eu.org",
"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"
},
"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 search for a tutorial on youtbe"
},
"OWNER_ID": {
"description": "Your Telegram User ID like 1234509"
},
"BANNED_CHANNELS": {
"description": "Put IDs of Banned Channels where bot will not work. You can add multiple IDs & separate with Space.",
"required": false
},
"UPDATES_CHANNEL": {
"description": "Put a Public Channel Username without @, so every user have to Join that channel to use the bot. Must add bot to channel as Admin to work properly.IF DONT WANT KEEP VALUE AS None",
"value":"None",
"required": false
},
"OWNER_USERNAME": {
"description": "Enter your username without @ example adarsh."
},
"SLEEP_THRESHOLD": {
"description": "Floodwait Sleep timer. Read the readme for more info about this var",
"required": false
},
"WORKERS": {
"description": "No. of workers that is to be assigned. Read the readme for more info about this var",
"required": false
},
"PORT": {
"description": "Port that you want your webapp to be listened to. Read the readme for more info about this var",
"value": "8080",
"required": false
},
"NO_PORT": {
"description": "If you don't want your port to be displayed. Read the readme for more info about this var",
"value": "False",
"required": false
},
"HAS_SSL": {
"description": "Default value is True",
"value": "True",
"required": false
},
"BIND_ADRESS": {
"description": "Read the readme for more info about this var Leave Empty For heroku",
"required": false
},
"FQDN": {
"description": "Read the readme for more info about this var **Leave Empty for heroku**",
"required": false
},
"name": {
"description": " Session Name for Bot [ Add adarsh-goel]",
"value": "File-To-Link",
"required": false
}
},
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}