-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
38 lines (38 loc) · 864 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
34
35
36
37
38
{
"name": "Telegraph Go Bot",
"description": "Telegram bot to do everything related to Telegraph",
"logo": "https://telegra.ph//file/df6b238dfd302630594ae.jpg",
"keywords": [
"telegram",
"bot",
"go",
"telegraph"
],
"buildpacks": [{
"url": "heroku/go"
}],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"repository": "https://github.com/StarkBotsIndustries/Telegraph-Go-Bot",
"env": {
"TOKEN": {
"description": "Obtain a Telegram bot token by contacting @BotFather",
"required": true,
"value": ""
},
"OWNER_ID": {
"description": "Your Telegram ID",
"required": false,
"value": ""
}
}
}