This repository has been archived by the owner on Aug 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
app.json
77 lines (77 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "Botmetrics",
"description": "Open Source Conversational Analytics",
"logo": "https://avatars0.githubusercontent.com/u/18603224",
"website": "https://www.getbotmetrics.com",
"repository": "https://github.com/botmetrics/botmetrics",
"keywords": ["rails", "slack", "messenger", "kik", "facebook", "bots", "telegram", "alexa"],
"scripts": {
"postdeploy": "bundle exec rake db:migrate db:seed"
},
"env": {
"RELAX_MUTEX_KEY": {
"description": "Redis Key used as a lock to decide whether to send events back to clients",
"value": "botmetrics_mutex_key"
},
"RELAX_BOTS_KEY": {
"description": "Redis Key used to store information about all Slack bots",
"value": "botmetrics_bots_key"
},
"RELAX_BOTS_PUBSUB": {
"description": "Redis Key used to receive PUBLISH messages from Relax clients",
"value": "botmetrics_bots_pubsub"
},
"RELAX_EVENTS_QUEUE": {
"description": "Redis Key used to receive events from Relax brokers",
"value": "botmetrics_events_queue"
},
"JSON_WEB_TOKEN_SECRET": {
"description": "Secret used to generate web tokens",
"generator": "secret"
},
"SIDEKIQ_USERNAME": {
"description": "Username for Sidekiq Web Interface",
"value": "admin"
},
"SIDEKIQ_PASSWORD": {
"description": "Password for Sidekiq Web Interface",
"generator": "secret"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
},
"worker": {
"quantity": 1,
"size": "hobby"
},
"relax_worker": {
"quantity": 1,
"size": "hobby"
},
"clock": {
"quantity": 1,
"size": "hobby"
},
"relax_server": {
"quantity": 1,
"size": "hobby"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
},
"heroku-redis",
"newrelic",
"papertrail",
"sendgrid",
"rollbar",
"pusher"
]
}