Skip to content

Commit

Permalink
Merge branch 'feature/922-seperate-keycloak-for-multitenancy' into mu…
Browse files Browse the repository at this point in the history
…ltitenancy_main
  • Loading branch information
clean-coder committed Jul 4, 2024
2 parents 01eab34 + 342891f commit 9380afd
Show file tree
Hide file tree
Showing 5 changed files with 8,062 additions and 2,594 deletions.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Path to folder from repository root `cd docker`
Type `docker-compose up` in terminal to start up the docker container, `docker-compose down` to shut the container down.

## Users
All users
All users PITC
```json
{
"gl": {
Expand Down Expand Up @@ -72,3 +72,25 @@ All users
}
}
```
All users ACME
```json
{
"gl": {
"username": "gl-acme",
"password": "gl",
"name": "Jaya Norris"
},
"bl": {
"username": "bl-acme",
"password": "bl",
"name": "Esha Harris"
},
"member": {
"username": "member-acme",
"password": "member",
"name": "Abraham Woodard"
}
}
```


6 changes: 3 additions & 3 deletions backend/src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ okr.tenants.acme.datasource.url=jdbc:postgresql://localhost:5432/okr
okr.tenants.acme.datasource.username=acme
okr.tenants.acme.datasource.password=pwd
okr.tenants.acme.datasource.schema=okr_acme
okr.tenants.acme.user.champion.emails=gl@gl.com
okr.tenants.acme.security.oauth2.resourceserver.jwt.jwk-set-uri=http://localhost:8544/realms/pitc/protocol/openid-connect/certs
okr.tenants.acme.security.oauth2.frontend.issuer-url=http://localhost:8544/realms/pitc
okr.tenants.acme.user.champion.emails=gl@acme.com
okr.tenants.acme.security.oauth2.resourceserver.jwt.jwk-set-uri=http://localhost:8545/realms/acme/protocol/openid-connect/certs
okr.tenants.acme.security.oauth2.frontend.issuer-url=http://localhost:8545/realms/acme
okr.tenants.acme.security.oauth2.frontend.client-id=acme_okr_staging
Loading

0 comments on commit 9380afd

Please sign in to comment.