More vibin

This commit is contained in:
Tim Zöller 2025-11-28 21:04:38 +01:00
parent 1901daf5ce
commit c1729a629d
47 changed files with 5754 additions and 41 deletions

View file

@ -14,7 +14,7 @@ spring:
jpa:
hibernate:
ddl-auto: update
ddl-auto: validate
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQLDialect
@ -22,6 +22,13 @@ spring:
use_sql_comments: true
show-sql: false
flyway:
enabled: true
baseline-on-migrate: true
locations: classpath:db/migration
schemas: public
validate-on-migrate: true
servlet:
multipart:
max-file-size: 50MB
@ -72,3 +79,21 @@ server:
error:
include-message: always
include-binding-errors: always
# Actuator configuration
management:
endpoints:
web:
exposure:
include: health,info
base-path: /actuator
endpoint:
health:
show-details: when-authorized
probes:
enabled: true
health:
db:
enabled: true
diskspace:
enabled: true