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.
 
 
 
 
 
aidar 52fd6db133 minor fix 3 years ago
.vscode Move to lombok 3 years ago
demo-client-app minor fix 3 years ago
demo-keycloak-runner update readme 3 years ago
demo-resource-server minor fix 3 years ago
README.md first commit 3 years ago

README.md

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;