mosenioring/back001/docker/keycloak/realm.json

41 lines
934 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": ["*"]
2026-01-12 18:38:15 +01:00
},
{
"clientId": "mosenioring-mobile",
"enabled": true,
"publicClient": true,
"directAccessGrantsEnabled": false,
"standardFlowEnabled": true,
"redirectUris": ["com.mosenioring.app://oauth2redirect"],
"webOrigins": ["*"]
2026-01-09 18:35:06 +01:00
}
],
"users": [
{
"username": "admin",
"enabled": true,
"email": "admin@example.com",
"credentials": [{ "type": "password", "value": "admin", "temporary": false }],
"realmRoles": ["ADMIN"]
}
]
}