keycloakify-angular

Angular Components for Keycloakify!

MIT License

Downloads
936
Stars
1

Using the library

npm install keycloakify @keycloakify/angular

or using yarn:

yarn add keycloakify @keycloakify/angular

Developing the library

If you want to make changes to the library make sure to follow these steps to setup your local environment.

In the library:

  1. Run ng build (preferably in watch mode)
  2. cd dist
  3. npm link

In the starter:

  1. You need to make configurations in angular.json:
    • Firstly, make sure that preserveSymlinks is set to true:
      "preserveSymlinks": true
      
    • Secondly, disable caching under cli:
      "cli": {
        "cache": {
          "enabled": false
        }
      }
      
  2. Run npm link @keycloakify/keycloakify-angular
  3. ng serve

You are good to go