-
Notifications
You must be signed in to change notification settings - Fork 452
/
app.json
53 lines (53 loc) · 1.64 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
{
"name": "TelegramCloneBot",
"description": "Telegram CloneBot by @jagrit007",
"logo": "https://i.imgur.com/ZLi4nDP.jpg",
"keywords": [
"telegram",
"clone",
"google drive",
"clone bot"
],
"repository": "https://github.com/jagrit007/Telegram-CloneBot",
"website": "https://github.com/jagrit007/Telegram-CloneBot",
"success_url": "https://t.me/scippletech",
"env": {
"BOT_TOKEN": {
"description": "Get this value from @BotFather on Telegram",
"value": "",
"required": true
},
"GDRIVE_FOLDER_ID": {
"description": "Google Drive Folder ID to Clone to. (Dont paste a link)",
"value": "",
"required": true
},
"OWNER_ID": {
"description": "Get this value by sending /id to @kelverbot on Telegram.",
"value": "",
"required": true
},
"AUTHORISED_USERS" : {
"description": "List of user ids to allow bot access to. Note: Write within [] and seperate with ,",
"value": "[]",
"required": false
},
"INDEX_URL": {
"description": "(Optional) CloudFlare Workers Index Link from GDINDEX (dont put / at end)",
"required": false
},
"IS_TEAM_DRIVE": {
"description": "Does you 'GDRIVE_FOLDER_ID' lead to a Team Drive or Normal Google Drive Folder",
"required": false,
"value": "False"
},
"USE_SERVICE_ACCOUNTS": {
"description": "If you are directly deploying from GitHub, set this to False. But if you later add Service Accounts, go to 'Config Vars' in app settings and set this to True.",
"value": "False",
"required": false
}
},
"buildpacks": [{
"url": "heroku/python"
}]
}