You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

573 B

Demo Application Protected By Keycloak

This project consists of 3 modules

Utilizing postgres DB on host system.

Preconfigure

Both keycloak and resource server rely on a postgres DB on host system, therefore initialize it first:

create database keycloak;
create user keycloak with ENCRYPTED PASSWORD 'keycloak';
grant all privileges on database keycloak to keycloak;