forked from lightdash/lightdash-deploy-heroku
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
37 lines (37 loc) · 1.29 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
{
"name": "Lightdash",
"description": "Explore and visualise metrics from your dbt cloud project",
"website": "https://lightdash.com",
"repository": "https://github.com/lightdash/lightdash",
"logo": "https://raw.githubusercontent.com/lightdash/lightdash-deploy-heroku/main/logo.png",
"stack": "container",
"env": {
"SECURE_COOKIES": {
"value": "true",
"description": "Secure cookies"
},
"TRUST_PROXY": {
"value": "true",
"description": "Trust the reverse proxy when setting secure cookies (via the \"X-Forwarded-Proto\" header)"
},
"LIGHTDASH_SECRET": {
"generator": "secret",
"description": "Unique secret for your heroku deployment to secure user logins"
},
"LIGHTDASH_INSTALL_ID": {
"generator": "secret",
"description": "Unique install ID"
},
"SITE_URL": {
"description": "Use https://<your-app-name>.herokuapp.com replacing <your-app-name> with the value above. Or use a custom domain name if you plan to add one to the app later."
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
]
}