-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.json
42 lines (42 loc) · 1.18 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
{
"name": "Blink",
"description": "Modern, lightweight, and planet-scale link shortener + analytics + management!",
"repository": "https://github.com/JaneJeon/Blink",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"formation": {
"web": {
"quantity": 1
}
},
"addons": ["heroku-postgresql", "heroku-redis"],
"env": {
"BASE_URL": {
"description": "the custom domain of this app; e.g. https://bit.ly (protocol required)"
},
"HOMEPAGE": {
"description": "where the root domain should redirect to; e.g. https://bitly.com (protocol required)"
},
"OIDC_CLIENT_ID": {
"description": "Client ID of Blink for your SSO's OIDC"
},
"OIDC_ISSUER_BASE_URL": {
"description": "Base URL for your SSO's OIDC endpoint (include .well-known)"
},
"SESSION_SECRET": {
"description": "the session encryption key",
"generator": "secret"
},
"OAUTH2_ENABLED": {
"description": "enable this separately later once Blink is running.",
"value": "false"
},
"HEROKU": {
"description": "this indicates whether Blink is running in Heroku; do not change this",
"value": "true"
}
}
}