forked from jitsucom/jitsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
60 lines (60 loc) · 2.53 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
{
"name": "Jitsu",
"description": "Jitsu is a real-time data collection platform. Deployment guide: https://jitsu.com/docs/deployment/deploy-on-heroku. More about Jitsu: https://jitsu.com",
"success_url": "/",
"repository": "https://github.com/jitsucom/jitsu",
"logo": "https://jitsu.com/img/jitsu-light.svg",
"keywords": ["jitsu", "events", "pixel", "golang", "tracking"],
"stack": "container",
"env": {
"GEO_MAXMIND_PATH": {
"description": "(Optional) If you want Jitsu to resolve location-based data (Coutry, City, etc) based on IP address, provide 'maxmind://<YOUR_MAXMIND_LICENSE_KEY>' or custom HTTP URL to hosted Maxmind DB file. You can leave it blank, it this case location-resolution won't work. See https://jitsu.com/docs/other-features/geo-data-resolution for details",
"required": false
},
"SLACK_NOTIFICATIONS_WEBHOOK": {
"description": "(Optional) Slack webhook URL. Server starts, system errors, and panics information will be sent there.",
"required": false
},
"SMTP_HOST": {
"description": "(Optional) For using reset/forgot password feature - configure SMTP Host for sending emails.",
"required": false
},
"SMTP_PORT": {
"description": "(Optional) For using reset/forgot password feature - configure SMTP Port for sending emails.",
"required": false
},
"SMTP_USER": {
"description": "(Optional) For using reset/forgot password feature - configure SMTP User for sending emails.",
"required": false
},
"SMTP_PASSWORD": {
"description": "(Optional) For using reset/forgot password feature - configure SMTP Password for sending emails.",
"required": false
},
"CLUSTER_ADMIN_TOKEN": {
"required": true,
"description": "Token for communication between Jitsu internal services (Configurator and Server). Leave it autogenerated unless you know what you do",
"generator": "secret"
},
"ENVIRONMENT": {
"required": true,
"description": "Deployment environment. Leave it unless you know what you do",
"value": "heroku"
},
"TLS_SKIP_VERIFY": {
"required": true,
"description": "Heroku Redis requires TLS_SKIP_VERIFY=true. Leave it unless you know what you do",
"value": "true"
},
"SERVER_CONFIGURATOR_REDIRECT_HTTPS": {
"required": true,
"description": "Heroku deployments requires SERVER_CONFIGURATOR_REDIRECT_HTTPS=true. Leave it unless you know what you do",
"value": "true"
}
},
"addons": [
{
"plan": "heroku-redis"
}
]
}