-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathapp.json
44 lines (44 loc) · 1.32 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
{
"name": "Virustotal-Telegram",
"description": "A telegram bot which can scan telegram files smaller than 32MB.",
"keywords": [
"telegram",
"virustotal"
],
"repository": "https://github.com/uaudith/Virustotal-telegram",
"env": {
"APP_ID": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"BOT_TOKEN": {
"description": "Telegram bot token. From Bot_Father",
"value": ""
},
"VIRUSTOTAL_API": {
"description": "Add your virustotal api.sign up to VirusTotal Community. Once you have a valid VirusTotal Community account you will find your personal API key in your personal settings section. This key is all you need to use the VirusTotal API.",
"value": ""
},
"userid": {
"description": "Enter the user id to which the bot should reply. (your user id)",
"value": ""
}
},
"addons": [
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}