forked from mieckert/keycloak-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.33 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
{
"name": "Keycloak Deployment to Heroku - Free Dynos",
"description": "Deployment of the Keycloak Identity and Access Management Solution to Heroku using a slightly adapted version of the official Docker container image",
"keywords": [
"identity",
"oauth",
"saml",
"keycloak",
"heroku"
],
"stack": "container",
"repository": "https://github.com/w20k/keycloak-heroku",
"logo": "https://www.keycloak.org/resources/images/keycloak_logo_480x108.png",
"success_url": "/",
"env": {
"KEYCLOAK_USER": {
"description": "Initial Admin user name",
"value": "admin"
},
"KEYCLOAK_PASSWORD": {
"description": "Initial Admin password",
"value": "change_me"
},
"PROXY_ADDRESS_FORWARDING": {
"description": "Set to true since we will be running behind Heroku's load balancers",
"value": "true"
},
"DATABASE_URL": {
"description": "Set your postgresql database connection string",
"value": "postgres://username:password@host:5432/dbname"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
}
]
}