forked from uesleilima/keycloak.x-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "Keycloak X Deployment to Heroku",
"description": "Deployment of the Keycloak.X Identity and Access Management Solution to Heroku using a slightly adapted version of the official Docker container image",
"keywords": [
"identity",
"oauth",
"saml",
"keycloak",
"keycloak.x",
"heroku",
"quarkus"
],
"stack": "container",
"repository": "https://github.com/uesleilima/keycloak.x-heroku",
"logo": "https://design.jboss.org/keycloak/logo/images/keycloak_icon_128px.png",
"success_url": "/",
"env": {
"KEYCLOAK_ADMIN": {
"description": "Initial Admin user name",
"value": "admin"
},
"KEYCLOAK_ADMIN_PASSWORD": {
"description": "Initial Admin password",
"value": "change_me"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:mini"
}
]
}