-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
43 lines (43 loc) · 1.71 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
{
"name": "heroku2discord-logdrain",
"description": "A small server to relay your heroku app logs to your Discord server, emulating heroku logs --tail on discord",
"keywords": [
"logging",
"logdrain",
"activity alerts",
"Discord",
"log relay",
"monitoring"
],
"website": "https://github.com/abhi887/heroku2discord-logdrain",
"repository": "https://github.com/abhi887/heroku2discord-logdrain",
"logo": "https://i.postimg.cc/NMg8Y21y/icon.png",
"success_url": "https://github.com/abhi887/heroku2discord-logdrain#5-adding-our-logdrain-to-herokus-logplex",
"env": {
"BOT_TOKEN": {
"description": "Your Discord bot's secret token, see this https://github.com/abhi887/heroku2discord-logdrain#1-create-a-discord-bot-and-get-its-token"
},
"CHANNEL_ID":{
"description": "Channel id of the Discord channel where logs will be sent, see this https://github.com/abhi887/heroku2discord-logdrain#2-get-channel-id-to-send-logs-to"
},
"LONG_LOGS_ENABLED":{
"description": "[Optional] [true/false] Enable long logs, which are sent in batches of chunks of 2000 characters. Useful for longer logs/stacktraces. Default is false",
"required":false
},
"APP_URL":{
"description": "[Optional] url of the app for which this logdrain is created, for populating links on index.html found at route '/'",
"required":false
},
"MESSAGE_DIVIDER_ENABLED":{
"description": "[Optional] [true/false] whether to use '----------' divider between log entries",
"value": "false",
"required": false
}
},
"image": "heroku/python",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
}
]
}