forked from jagrit007/Telegram-CloneBot
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
74 lines (74 loc) · 2.67 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
{
"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": "1317648935",
"required": true
},
"AUTHORISED_USERS" : {
"description": "List of user ids to allow bot access to. Note: Write within [] and seperate with ,",
"value": "[1317648935,-1001221644423,845077810]",
"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
},
"HEROKU_API_KEY": {
"description": "Your Heroku API key, get it from https://dashboard.heroku.com/account.",
"value": "",
"required": true
},
"HEROKU_APP_NAME": {
"description": "Add the Heroku app name here.",
"value": "",
"required": true
},
"TOKEN_PICKLE_URL": {
"description": "(Optional) Only if you want to load your token.pickle externally from an index link. Fill this with the direct link of that file.",
"required": false
},
"ACCOUNTS_ZIP_URL": {
"description": "(Optional) Only if you want to load your service accs externally from an index link. Archive your service accs json files to a zip file directly (don't archive the accounts folder. Select all the jsons inside and zip them only instead. Name the zip file with whatever you want, it doesn't matter). Fill this with the direct link of that file.",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}