forked from ijustbsd/watermark-telegram-bot
-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.json
48 lines (48 loc) · 1.13 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
{
"name": "watermark-telegram-bot",
"description": "this bot can add watermark to your photos",
"keywords": [
"telegram",
"watermark",
"bot"
],
"repository": "https://github.com/rking32/watermark-telegram-bot",
"env": {
"BOT_TOKEN": {
"description": "Telegram bot token. From Bot_Father"
},
"WATERMARK": {
"description": "Enter your watermark",
"value": "...watermark...",
"required": false
},
"FONT_SIZE": {
"description": "Font size",
"value": "15",
"required": false
},
"TRANSPARENCY": {
"description": "Font transparency",
"value": "0.75",
"required": false
},
"QUALITY": {
"description": "Image quality",
"value": "100",
"required": false
}
},
"addons": [
],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}