Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement seperate keycloak for acme #930

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading