forked from rakam-io/rakam-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
63 lines (63 loc) · 2.37 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
{
"name": "Rakam",
"description": "Your analytics service",
"website": "http://rakam.io",
"repository": "https://github.com/rakam-io/rakam",
"logo": "https://avatars3.githubusercontent.com/u/18196166?v=3&s=200",
"success_url": "/",
"keywords": [
"analytics",
"chart",
"sql",
"statistics",
"graph",
"realtime",
"crm"
],
"addons": [
"heroku-postgresql:hobby-dev",
"papertrail:choklad"
],
"env": {
"LOCK_KEY": {
"description": "Lock key for creating projects. You will need this key when you create a project in your Rakam cluster",
"required": true
},
"ENABLE_GEOIP_PLUGIN": {
"description": "GeoIP attaches location information to collections that has 'ip' attribute.",
"value": "true"
},
"GEOIP_DATABASE_URL": {
"description": "Maxmind GeoIP database url. Community version of Maxmind GeoIP is used by default but you can also provide your database URL",
"value": "http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz"
},
"GEOIP_CONNECTION_TYPE_URL": {
"description": "Maxmind GeoIP connection type url. Community version of Maxmind GeoIP is used by default but you can also provide your database URL",
"value": "https://github.com/maxmind/MaxMind-DB/blob/master/test-data/GeoIP2-Connection-Type-Test.mmdb?raw=true"
},
"ENABLE_USER_PLUGIN": {
"description": "User module is basically a CRM integrated with your analytics service.",
"value": "true"
},
"ENABLE_REALTIME_PLUGIN": {
"description": "Real-time module allows you to create real-time reports for your dashboards.",
"value": "true"
},
"ENABLE_EVENT_STREAM_PLUGIN": {
"description": "Event stream plugin subscribes event streams and notifies new events to you in real-time.",
"value": "true"
},
"ENABLE_EVENT_EXPLORER_PLUGIN": {
"description": "Event explorer plugin subscribes event streams and notifies new events to you in real-time.",
"value": "true"
},
"ENABLE_FUNNEL_PLUGIN": {
"description": "Funnel plugin depends on user attribute of events and allows you to run funnel queries.",
"value": "true"
},
"ENABLE_RETENTION_ANALYSIS_PLUGIN": {
"description": "Retention analysis plugin depends on user attribute of events and allows you to run retention queries.",
"value": "true"
}
}
}