-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
57 lines (57 loc) · 1.66 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
{
"name": "Koalalorenzo's Twitch Meme Generator",
"description": "Twitch bot that generates meme on the fly for Streamers",
"keywords": [
"twitch",
"meme",
"generator",
"twitch-bot",
"images",
"go"
],
"website": "https://gitlab.com/koalalorenzo/twitch-meme-generator",
"repository": "https://gitlab.com/koalalorenzo/twitch-meme-generator",
"success_url": "/",
"env": {
"KTMG_CHANNEL": {
"description": "Name of the Twitch channel to monitor",
"value": "koalalorenzo"
},
"KTMG_DISPLAY_TIME": {
"description": "The amount of time an image should appear",
"value": "10s"
},
"KTMG_WEBHOOK_ENABLE": {
"description": "If set to true, enables an HTTP endpoint to queue memes. Use for custom integartion or manual tests.",
"value": "false"
},
"KTMG_WEBHOOK_USERNAME": {
"description": "(optional) Set the username for basic authentication. Leave empty to disable WebHook authentication",
"value": "",
"required": false
},
"KTMG_WEBHOOK_PASSWORD": {
"description": "(optional) Set the password for basic authentication. Leave empty to disable WebHook authentication",
"generator": "secret",
"required": false
},
"HEROKU_BUILDPACK_GIT_LFS_REPO": {
"description": "Git LFS repository. Leve default if you don't know what this is",
"value": "https://github.com/koalalorenzo/twitch-meme-generator.git"
}
},
"buildpacks": [
{
"url": "https://github.com/raxod502/heroku-buildpack-git-lfs.git"
},
{
"url": "heroku/go"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}