-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
78 lines (78 loc) · 2.12 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
{
"name": "Youtube Upload Bot",
"description": "Telegram to YouTube Uploader Bot",
"repository": "https://github.com/odysseusmax/utube",
"logo": "https://raw.githubusercontent.com/odysseusmax/utube/master/ss/logo.png",
"keywords": ["telegram", "youtube", "uploader"],
"env": {
"BOT_TOKEN": {
"description": "Your Bot token. Get from https://t.me/botfather",
"value": ""
},
"SESSION_NAME": {
"description": "Your Bot's username.",
"value": "youtubeitbot",
"required":false
},
"API_ID": {
"description": "Your API_ID. Refer project docs.",
"value": ""
},
"API_HASH": {
"description": "Your API_ID. Refer project docs.",
"value": ""
},
"CLIENT_ID": {
"description": "Your Google CLIENT_ID. Refer project docs.",
"value": ""
},
"CLIENT_SECRET": {
"description": "Your Google CLIENT_SECRET. Refer project docs.",
"value": ""
},
"BOT_OWNER": {
"description": "Telegram id of the bot owner.",
"value": ""
},
"AUTH_USERS": {
"description": "Telegram id of authorised users, separated by comma",
"value": "",
"required":false
},
"VIDEO_DESCRIPTION": {
"description": "Any default description to be aded to the video.",
"value": "",
"required":false
},
"VIDEO_CATEGORY": {
"description": "YouTube's video category id.",
"value": "",
"required":false
},
"VIDEO_TITLE_PREFIX": {
"description": "Any prefix to be added to the video's title.",
"value": "",
"required":false
},
"VIDEO_TITLE_SUFFIX": {
"description": "Any suffix to be added to the video's title.",
"value": "",
"required":false
},
"UPLOAD_MODE": {
"description": "The video's privacy status. Valid values for this property are: private, public, unlisted",
"value": "private",
"required":false
},
"DEBUG": {
"description": "Pass any value to set logging to debug level.",
"value": "",
"required":false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}