forked from boxyhq/jackson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
92 lines (92 loc) · 3.36 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "SAML Jackson",
"description": "SAML service [SAML in a box from BoxyHQ]",
"repository": "https://github.com/boxyhq/jackson",
"logo": "https://boxyhq.com/img/logo.png",
"keywords": ["saml", "saml2", "saml-service-provider"],
"addons": ["heroku-postgresql"],
"env": {
"JACKSON_API_KEYS": {
"description": "API Key for validating REST calls",
"generator": "secret",
"required": true
},
"PGSSLMODE": {
"description": "https://devcenter.heroku.com/articles/connecting-heroku-postgres#connecting-in-node-js",
"value": "no-verify"
},
"EXTERNAL_URL": {
"description": "The public URL of the app. See https://boxyhq.com/docs/jackson/env-variables#external_url . Replace <HEROKU_APP_NAME> below with 'App name' from above",
"value": "https://<HEROKU_APP_NAME>.herokuapp.com"
},
"IDP_ENABLED": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#idp_enabled",
"required": false
},
"CLIENT_SECRET_VERIFIER": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#client_secret_verifier",
"required": false
},
"SAML_AUDIENCE": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#saml_audience",
"value": "https://saml.boxyhq.com",
"required": false
},
"DB_ENGINE": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#db_engine Leave empty to use the heroku-postgresql",
"required": false
},
"DB_URL": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#db_url Leave empty to use the heroku-postgresql",
"required": false
},
"DB_TYPE": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#db_type Leave empty to use the heroku-postgresql",
"required": false
},
"DB_TTL": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#db_ttl",
"required": false
},
"DB_CLEANUP_LIMIT": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#db_cleanup_limit",
"required": false
},
"DB_ENCRYPTION_KEY": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#db_encryption_key",
"required": false
},
"SMTP_HOST": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#smtp_host",
"required": false
},
"SMTP_PORT": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#smtp_port",
"required": false
},
"SMTP_USER": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#smtp_user",
"required": false
},
"SMTP_PASSWORD": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#smtp_password",
"required": false
},
"SMTP_FROM": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#smtp_from",
"required": false
},
"NEXTAUTH_URL": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#nextauth_url",
"required": false
},
"NEXTAUTH_SECRET": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#nextauth_secret",
"required": false
},
"NEXTAUTH_ACL": {
"description": "https://boxyhq.com/docs/jackson/deploy/env-variables#nextauth_acl",
"required": false
}
}
}