Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
user-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
user-manager
Commits
5455e3c9
Commit
5455e3c9
authored
1 year ago
by
OZGCloud
Browse files
Options
Downloads
Patches
Plain Diff
remove urls
parent
a306138e
Branches
Branches containing commit
Tags
2.20.0-alfa
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+16
-16
16 additions, 16 deletions
README.md
with
16 additions
and
16 deletions
README.md
+
16
−
16
View file @
5455e3c9
...
@@ -9,7 +9,7 @@ This properties must be configured to run the application
...
@@ -9,7 +9,7 @@ This properties must be configured to run the application
| Key | Value | Default | Mandatory | Description |
| Key | Value | Default | Mandatory | Description |
|----------------------------------------------------|----------------------------------------------------|------------------------| --------- |----------------------------------------------------------------|
|----------------------------------------------------|----------------------------------------------------|------------------------| --------- |----------------------------------------------------------------|
| quarkus.oidc.auth-server-url | https://
sso.dev.by.ozg-cloud.de/realms/sh-kiel-dev
| none | yes | Url of the keycloak server with the realm |
| quarkus.oidc.auth-server-url | https://
keycloakurl/realms/realmname
| none | yes | Url of the keycloak server with the realm |
| quarkus.mongodb.connection-string | mongodb://ozg-mongodb:27017 | none | yes | The connection string for the mongo db database |
| quarkus.mongodb.connection-string | mongodb://ozg-mongodb:27017 | none | yes | The connection string for the mongo db database |
| quarkus.mongodb.database | usermanager | usermanager | no | Name of the mongo db database |
| quarkus.mongodb.database | usermanager | usermanager | no | Name of the mongo db database |
| ozgcloud.keycloak.sync.period | 5m | 6h | no | Period between synchronizations |
| ozgcloud.keycloak.sync.period | 5m | 6h | no | Period between synchronizations |
...
@@ -46,7 +46,7 @@ In order to start user-manager-server connecting againts dev keycloak locally wi
...
@@ -46,7 +46,7 @@ In order to start user-manager-server connecting againts dev keycloak locally wi
use below configuration in your IDE or CLI.
use below configuration in your IDE or CLI.
```
```
-Dquarkus.profile=local,remotekc
-Dquarkus.profile=local,remotekc
-Dquarkus.oidc.auth-server-url=https://
sso.dev.by.ozg-cloud.de/realms/sebo-test
-Dquarkus.oidc.auth-server-url=https://
keyclaokurl/realms/realmname
-Dozgcloud.keycloak.api.realm=sebo-test
-Dozgcloud.keycloak.api.realm=sebo-test
-Dozgcloud.usersync.period="5s"
-Dozgcloud.usersync.period="5s"
```
```
...
@@ -122,10 +122,10 @@ Usermanager als über-jar erstellen und lokal starten:
...
@@ -122,10 +122,10 @@ Usermanager als über-jar erstellen und lokal starten:
```
bash
```
bash
./mvnw clean package
-Dquarkus
.package.type
=
uber-jar
./mvnw clean package
-Dquarkus
.package.type
=
uber-jar
java
-Dquarkus
.oidc.auth-server-url
=
https://
sso.dev.by.ozg-cloud.de/realms/by-kiel-dev
\
java
-Dquarkus
.oidc.auth-server-url
=
https://
keycloakurl/realms/realmname
\
-Dozgcloud
.user-manager.url
=
http://localhost:8080
\
-Dozgcloud
.user-manager.url
=
http://localhost:8080
\
-Dkeycloak
.url
=
https://
sso.dev.by.ozg-cloud.de
\
-Dkeycloak
.url
=
https://
keycloakurl
\
-jar
./target/user-manager-server-1.3.0-
SNAPSHOT-
runner.jar
-jar
./target/user-manager-server-1.3.0-runner.jar
```
```
Usermanager als native Anwendung erstellen und lokal starten:
Usermanager als native Anwendung erstellen und lokal starten:
...
@@ -133,14 +133,14 @@ Usermanager als native Anwendung erstellen und lokal starten:
...
@@ -133,14 +133,14 @@ Usermanager als native Anwendung erstellen und lokal starten:
```
bash
```
bash
./mvnw clean package
-Pnative
./mvnw clean package
-Pnative
./target/user-manager-server-1.3.0-
SNAPSHOT-
runner
\
./target/user-manager-server-1.3.0-runner
\
-Dquarkus
.oidc.auth-server-url
=
https://
sso.dev.by.ozg-cloud.de/realms/by-kiel-dev
\
-Dquarkus
.oidc.auth-server-url
=
https://
keycloakurl/realms/realmname
\
-Dquarkus
.mongodb.connection-string
=
mongodb://localhost:27018
\
-Dquarkus
.mongodb.connection-string
=
mongodb://localhost:27018
\
-Dozgcloud
.user-manager.url
=
http://localhost:8080
\
-Dozgcloud
.user-manager.url
=
http://localhost:8080
\
-Dkeycloak
.url
=
https://
sso.dev.by.ozg-cloud.de
\
-Dkeycloak
.url
=
https://
keycloakurl
\
-Dozgcloud
.keycloak.api.user
=
usermanagerapiuser
\
-Dozgcloud
.keycloak.api.user
=
usermanagerapiuser
\
-Dozgcloud
.keycloak.api.password
=
****
**
\
-Dozgcloud
.keycloak.api.password
=
****
\
-Dozgcloud
.keycloak.api.realm
=
by-kiel-dev
\
-Dozgcloud
.keycloak.api.realm
=
realmname
\
-Dozgcloud
.keycloak.api.client
=
alfa
\
-Dozgcloud
.keycloak.api.client
=
alfa
\
-Dozgcloud
.usersync.period
=
"5m"
\
-Dozgcloud
.usersync.period
=
"5m"
\
-Xmx32m
-Xmx32m
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment