-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
32 lines (32 loc) · 987 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
{
"name": "Teamup Telegram Bot",
"description": "Telegram Bot for task assignment on teamup calendar",
"repository": "https://github.com/dit-calendar/teamup-telegram-bot",
"keywords": [
"dit",
"telegram-bot",
"teamup"
],
"addons": [
"heroku-postgresql"
],
"env": {
"HEROKU_APP_NAME": {
"description": "enter the heroku App name here again"
},
"TELEGRAM_TOKEN": {
"description": "telegram token you got from Botfather"
},
"BOT_NAME": {
"description": "username of your telegram bot. Without '@'"
},
"TEAMUP_CALENDAR_KEY": {
"description": "last part of your teamup calendar url. e.g. xxxxxXXXxxxxXX for https://teamup.com/xxxxxXXXxxxxXX"
},
"POST_CALENDAR_WITHOUT_SUBCALENDAR_NAME": {
"description": "allow to post calendar without passing a subcalendar name. Enable this feature only if you are aware of possible security risk",
"value": "false",
"required": false
}
}
}