-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
41 lines (41 loc) · 1.26 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
{
"name": "BridgeBotNext instance",
"description": "Bridge between different messengers",
"repository": "https://github.com/maksimkurb/BridgeBotNext",
"logo": "https://raw.githubusercontent.com/maksimkurb/BridgeBotNext/master/static/angry-logo.png",
"keywords": [ "c#", "bot", "telegram", "vkontakte", "tg", "vk", "bridge" ],
"addons": ["heroku-postgresql:hobby-dev"],
"env": {
"BOT_VK__ACCESSTOKEN": {
"description": "Access token of VK bot",
"value": "aabbcc"
},
"BOT_VK__GROUPID": {
"description": "VK group id",
"value": "12345"
},
"BOT_TG__BOTTOKEN": {
"description": "Access token of Telegram bot",
"value": "12345:aabbcc"
},
"BOT_AUTH__ENABLED": {
"description": "Is bot settings protected with password",
"value": "false"
},
"BOT_AUTH__PASSWORD": {
"description": "Bot password, if enabled",
"value": "s3cr3t",
"required": false
},
"BOT_DBPROVIDER": {
"description": "Database provider. Do not change if do not know what it does. By default uses heroku free-tier postgres database",
"value": "heroku-postgres",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/jincod/dotnetcore-buildpack"
}
]
}