-
Notifications
You must be signed in to change notification settings - Fork 83
/
app.json
69 lines (69 loc) · 1.95 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
{
"name": "Streaming Link",
"description": "A telegram bot to generate direct streaming links",
"keywords": [
"telegram",
"best",
"open",
"remote",
"uploader",
"stream",
"google",
"m3u8",
"mpd"
],
"success_url": "https://github.com/Jigarvarma2005/Streaming-Link-Gen",
"website": "https://github.com/Jigarvarma2005/Streaming-Link-Gen",
"repository": "https://github.com/Jigarvarma2005/Streaming-Link-Gen",
"env": {
"TG_BOT_TOKEN": {
"description": "Your bot token, as a string.",
"value": ""
},
"APP_ID": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"UPDATES_CHANNEL": {
"description": "Your updates channel username",
"required": false
},
"VIDEO_PLAYER_URL": {
"description": "Your web video player url check 'https://github.com/Jigarvarma2005/video-player'",
"required": false
},
"TOKEN_PICKLE": {
"description": "`token.pickle` file link to download & use."
},
"GDRIVE_FOLDER_ID": {
"description": "This is the folder ID of the Google Drive Folder to which you want to upload all the telegram media"
},
"IS_TEAM_DRIVE": {
"description": "Set to 'True' if GDRIVE_FOLDER_ID is from a Team Drive else False or Leave it empty.",
"required": false,
"value": "False"
},
"USE_SERVICE_ACCOUNTS": {
"description": "Whether to use service accounts or not. For this to work see 'Using service accounts' section readme file in repo",
"value": "False"
},
"INDEX_URL": {
"description": " Refer to https://github.com/maple3142/GDIndex/ The URL should not have any trailing '/'"
}
},
"addons": [
],
"buildpacks": [{
"url": "heroku/python"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}