mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 09:31:38 -04:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"realm": "cleanuparr-test",
|
|
"enabled": true,
|
|
"sslRequired": "none",
|
|
"registrationAllowed": false,
|
|
"loginWithEmailAllowed": false,
|
|
"duplicateEmailsAllowed": false,
|
|
"resetPasswordAllowed": false,
|
|
"editUsernameAllowed": false,
|
|
"bruteForceProtected": false,
|
|
"clients": [
|
|
{
|
|
"clientId": "cleanuparr",
|
|
"name": "Cleanuparr E2E Test Client",
|
|
"enabled": true,
|
|
"publicClient": false,
|
|
"secret": "test-secret",
|
|
"redirectUris": ["http://localhost:5000/*"],
|
|
"webOrigins": ["http://localhost:5000"],
|
|
"standardFlowEnabled": true,
|
|
"directAccessGrantsEnabled": true,
|
|
"serviceAccountsEnabled": false,
|
|
"protocol": "openid-connect",
|
|
"attributes": {
|
|
"pkce.code.challenge.method": "S256",
|
|
"post.logout.redirect.uris": "http://localhost:5000/*"
|
|
}
|
|
}
|
|
],
|
|
"users": [
|
|
{
|
|
"username": "testuser",
|
|
"enabled": true,
|
|
"email": "testuser@example.com",
|
|
"emailVerified": true,
|
|
"firstName": "Test",
|
|
"lastName": "User",
|
|
"credentials": [
|
|
{
|
|
"type": "password",
|
|
"value": "testpass",
|
|
"temporary": false
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|