CI test
Some checks failed
Build, Push and Deploy / build-and-deploy (push) Failing after 7m37s

This commit is contained in:
Murat Özkorkmaz
2025-10-21 23:58:36 +02:00
parent 39ce995956
commit 9464b75ed4
7 changed files with 349 additions and 10 deletions

View File

@@ -5,13 +5,13 @@ spring:
max-file-size: 1000MB # Maximal zulässige Größe pro Datei (z.B. 10 MB)
max-request-size: 5000MB # Maximal zulässige Größe der gesamten Anfrage (z.B. 50 MB)
profiles:
active: dev
active: ${SPRING_PROFILES_ACTIVE:prod}
application:
name: skamp-api
name: ${APPLICATION_NAME:skamp-api}
datasource:
url: jdbc:postgresql://localhost:5432/skamp
username: dev
password: dev
url: jdbc:postgresql://${POSTGRES_HOST:localhost}:${POSTGRES_PORT:5432}/${POSTGRES_DB:skamp}
username: ${POSTGRES_USER:dev}
password: ${POSTGRES_PASSWORD:dev}
driver-class-name: org.postgresql.Driver
jpa:
hibernate:
@@ -38,7 +38,7 @@ spring:
oauth2:
resourceserver:
jwt:
issuer-uri: http://localhost:8280/realms/skamp
issuer-uri: ${KEYCLOAK_ISSUER_URI:http://localhost:8280/realms/skamp}
jwk-set-uri: ${spring.security.oauth2.resourceserver.jwt.issuer-uri}/protocol/openid-connect/certs
logging:
@@ -52,10 +52,10 @@ logging:
cors:
allowed-origins:
- http://localhost:4200
- ${CORS_ALLOWED_ORIGINS:http://localhost:4200}
allowed-headers: "*"
s3:
access-key: dev
secret-key: dev123456
endpoint: http://localhost:9000
access-key: ${MINIO_ACCESS_KEY:dev}
secret-key: ${MINIO_SECRET_KEY:dev123456}
endpoint: ${MINIO_ENDPOINT:http://localhost:9000}