mosenioring/back001/docker/keycloak/realm.json

32 lines
663 B
JSON
Raw Normal View History

2026-01-09 18:35:06 +01:00
{
"realm": "mosenioring",
"enabled": true,
"displayName": "Mosenioring",
"roles": {
"realm": [
{ "name": "ADMIN" },
{ "name": "DOCTOR" },
{ "name": "CAREGIVER" }
]
},
"clients": [
{
"clientId": "mosenioring-backend",
"enabled": true,
"publicClient": true,
"directAccessGrantsEnabled": true,
"standardFlowEnabled": true,
"redirectUris": ["*"]
}
],
"users": [
{
"username": "admin",
"enabled": true,
"email": "admin@example.com",
"credentials": [{ "type": "password", "value": "admin", "temporary": false }],
"realmRoles": ["ADMIN"]
}
]
}