Skip to content

Commit

Permalink
Merge branch 'refs/heads/46-change-naming-of-the-app' into 49-html-ed…
Browse files Browse the repository at this point in the history
…itor-replacement

# Conflicts:
#	frontend/package-lock.json
#	frontend/src/core/core.router.ts
  • Loading branch information
jannik.lange committed Sep 11, 2024
2 parents 60c60f9 + 9f253a2 commit 2d7ab14
Show file tree
Hide file tree
Showing 67 changed files with 1,183 additions and 1,091 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ dist/
nbdist/
.nb-gradle/

# Intellij
.run/kobit-frontend.run.xml


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Prerequisite digital accessibility and mobile-first

**Zusammenfassung**

Konfliktbegleitungs Web Application für staatliche Organisationen und Unternehmen
Unterstützungs Finder Online Web Application für staatliche Organisationen und Unternehmen

Die KoBITApp hilft dem Nutzer, der ein Problem/Konflikt hat, indem sie eine Übersicht über die Anlaufstellen gibt,
Unterstützung der richtigen Anlaufstellen in der jeweiligen Situation bietet und zentral Informationen und
Expand Down
7 changes: 6 additions & 1 deletion apigateway/src/main/resources/application-local.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
spring:
logging:
level:
root: warn

spring:
# Define the local keycloak realm here
realm: ${REALM}

Expand All @@ -16,6 +19,8 @@ spring:
allowedOrigins:
- "http://localhost:8081"
- "http://127.0.0.1:8081"
allowed-origin-patterns:
- "https://*.muenchen.de"
allowedMethods: "*"
allowedHeaders: "*"
allowCredentials: true
Expand Down
2 changes: 1 addition & 1 deletion apigateway/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spring:
issuer-uri: ${KEYCLOAK_URI}
registration:
keycloak:
client-id: kobit
client-id: ${client-id:kobit}
client-secret: ${client-secret}
scope:
- LHM
Expand Down
235 changes: 5 additions & 230 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"version": "1.0.0",
"private": true,
"scripts": {

"init": "npm install",
"serve": "vue-cli-service serve --port 8081 --openssl-legacy-provider",
"build": "vue-cli-service lint --fix && vue-cli-service build --openssl-legacy-provider",
"build": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service lint --fix && vue-cli-service build --openssl-legacy-provider",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint --fix",
"create-feature": "bash ./scripts/createFeature.sh"
Expand Down
Binary file modified frontend/public/images/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>images/favicon.ico">
<title>KoBIT</title>
<title>UFO</title>
</head>
<body>
<noscript>
Expand Down
Loading

0 comments on commit 2d7ab14

Please sign in to comment.