This project consists of 3 modules
Utilizing postgres DB on host system.
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;