-
Notifications
You must be signed in to change notification settings - Fork 23
/
app.json
27 lines (27 loc) · 847 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
{
"name": "Relax",
"description": "A Go Message Broker for Slack Bots",
"repository": "https://github.com/zerobotlabs/relax",
"keywords": ["golang", "slack", "bots", "relax"],
"env": {
"RELAX_MUTEX_KEY": {
"description": "Redis Key used as a lock to decide whether to send events back to clients",
"value": "relax_mutex_key"
},
"RELAX_BOTS_KEY": {
"description": "Redis Key used to store information about all Slack bots",
"value": "relax_bots_key"
},
"RELAX_BOTS_PUBSUB": {
"description": "Redis Key used to receive PUBLISH messages from Relax clients",
"value": "relax_bots_pubsub"
},
"RELAX_EVENTS_QUEUE": {
"description": "Redis Key used to receive events from Relax brokers",
"value": "relax_events_queue"
}
},
"addons": [
"heroku-redis"
]
}