2026-03-30 10:08:14 +02:00
|
|
|
spring:
|
|
|
|
|
application:
|
|
|
|
|
name: cameleer-saas
|
|
|
|
|
jpa:
|
|
|
|
|
open-in-view: false
|
|
|
|
|
hibernate:
|
|
|
|
|
ddl-auto: validate
|
|
|
|
|
flyway:
|
|
|
|
|
enabled: true
|
|
|
|
|
locations: classpath:db/migration
|
|
|
|
|
|
|
|
|
|
management:
|
|
|
|
|
endpoints:
|
|
|
|
|
web:
|
|
|
|
|
exposure:
|
|
|
|
|
include: health,info
|
|
|
|
|
endpoint:
|
|
|
|
|
health:
|
|
|
|
|
show-details: when-authorized
|
|
|
|
|
|
|
|
|
|
cameleer:
|
|
|
|
|
jwt:
|
|
|
|
|
expiration: 86400 # 24 hours in seconds
|
2026-04-04 14:48:20 +02:00
|
|
|
private-key-path: ${CAMELEER_JWT_PRIVATE_KEY_PATH:}
|
|
|
|
|
public-key-path: ${CAMELEER_JWT_PUBLIC_KEY_PATH:}
|