-
Notifications
You must be signed in to change notification settings - Fork 224
/
app.json
33 lines (33 loc) · 876 Bytes
/
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
{
"name" : "Reconator",
"description": "An Automated Recon Framework",
"repository": "https://github.com/gokulapap/Reconator",
"logo": "https://i.imgur.com/OuplaeQ.png",
"keywords": ["python", "recon", "automation"],
"website": "https://t.me/+cpbGih_iO50wNDg1",
"success_url": "https://t.me/+cpbGih_iO50wNDg1",
"env": {
"API_KEY": {
"description": "Go to BotFather bot in telegram https://telegram.me/BotFather and create a bot to get the api key",
"required": true
},
"CHAT_ID": {
"description": "Go to chat_id_echo bot and get your chat id",
"required": true
}
},
"buildpacks": [
{
"url": "heroku-community/apt"
},
{
"url": "heroku/python"
},
{
"url": "heroku/php"
}
],
"addons": [{
"plan": "heroku-postgresql"
}]
}