24 lines
386 B
YAML
24 lines
386 B
YAML
|
|
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
|