Events that can be detected by the dashboard: * Login * Login with different identity providers (Github, Keycloak) * Login error (empty password/user or wrong password) * Registration * Registration with different identity providers (Github, Keycloak)
Mobile app: * Clone https://github.com/TommyJ1994/keyonic-v2/tree/master/src * Modify https://github.com/TommyJ1994/keyonic-v2/blob/master/src/index.html#L17 to point to your local Keycloak * Modify https://github.com/TommyJ1994/keyonic-v2/blob/master/src/config/keycloak.json#L2-L5 to suit your local configuration, presumably: {code:json} { "url": "https://keycloak-test.192.168.37.1.nip.io/auth", "realm": "test", "clientId": "account" ... } {code} *Might be necessary to change this as well https://github.com/TommyJ1994/keyonic-v2/blob/master/src/services/keycloak.service.ts#L48-L50 to: {code:javascript} login(): void { KeycloakService.auth.authz.login({ redirectUri: "/" }); } {code}
|
|