@dedel.alex/ally-keycloak
TypeScript icon, indicating that this package has built-in type declarations

1.0.16 • Public • Published

Install Keycloak in Adonis

  • Run node ace configure @dedel.alex/ally-keycloak. The configure command needs the package name and not the package path.

  • Inform typescript about your driver by defining a mapping inside the contracts/ally.ts file.

    import { KeycloakDriverConfig, KeycloakDriver } from '@dedel.alex/ally-keycloak/build/standalone'
    
    declare module '@ioc:Adonis/Addons/Ally' {
      interface SocialProviders {
        keycloak: {
          config: KeycloakDriverConfig
          implementation: KeycloakDriver
        }
      }
    }
  • Follow the Adonis official process to add Social authentication: https://docs.adonisjs.com/guides/auth/social

  • Define the config inside the config/ally.ts file as follows:

    import Env from '@ioc:Adonis/Core/Env'
    
    const allyConfig = {
      /*
      |--------------------------------------------------------------------------
      | Keycloak driver
      |--------------------------------------------------------------------------
      */
      keycloak: {
        driver: 'keycloak',
        keycloakUrl: 'http://localhost:8080/realms/{realm}/protocol/openid-connect/{action}',
        realm: Env.get('KEYCLOAK_REALM'),
        clientId: Env.get('KEYCLOAK_CLIENT_ID'),
        clientSecret: Env.get('KEYCLOAK_CLIENT_SECRET'),
        callbackUrl: 'http://localhost:3333/keycloak/callback',
      },
    }

Github project

https://github.com/aDedel/adonis-ally-keycloak

Readme

Keywords

Package Sidebar

Install

npm i @dedel.alex/ally-keycloak

Weekly Downloads

32

Version

1.0.16

License

MIT

Unpacked Size

18.6 kB

Total Files

9

Last publish

Collaborators

  • dedel.alex